aboutsummaryrefslogtreecommitdiff
path: root/tests/Formats/FormatImplementationTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Formats/FormatImplementationTest.php')
-rw-r--r--tests/Formats/FormatImplementationTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Formats/FormatImplementationTest.php b/tests/Formats/FormatImplementationTest.php
index 03ac6d51..16bbb89e 100644
--- a/tests/Formats/FormatImplementationTest.php
+++ b/tests/Formats/FormatImplementationTest.php
@@ -30,7 +30,7 @@ class FormatImplementationTest extends TestCase
public function dataFormatsProvider()
{
$formats = [];
- foreach (glob(PATH_LIB_FORMATS . '*.php') as $path) {
+ foreach (glob(__DIR__ . '/../formats/*.php') as $path) {
$formats[basename($path, '.php')] = [$path];
}
return $formats;