Skip to content

Commit

Permalink
Fix test not testing the documented behavior
Browse files Browse the repository at this point in the history
See #39
  • Loading branch information
caendesilva committed Dec 14, 2024
1 parent a1be0e6 commit 48250ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/framework/tests/Feature/DiscoveryServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public function testMediaAssetExtensionsCanBeAddedByCommaSeparatedValues()

$this->assertSame([], MediaFile::files());

self::mockConfig(['hyde.media_extensions' => ['1,2,3']]);
self::mockConfig(['hyde.media_extensions' => '1,2,3']);
$this->assertSame(['test.1', 'test.2', 'test.3'], MediaFile::files());
}

Expand Down

0 comments on commit 48250ca

Please sign in to comment.