aboutsummaryrefslogtreecommitdiff
path: root/tests/Formats/FormatImplementationTest.php
diff options
context:
space:
mode:
authorGravatar Dag <me@dvikan.no> 2024-01-25 16:06:24 +0100
committerGravatar GitHub <noreply@github.com> 2024-01-25 16:06:24 +0100
commitd08d13f2c87b24fadb92e31c50dedc6e56c3c088 (patch)
treea2fd66aa0cdd091ad34a135cf8222847f025f6f3 /tests/Formats/FormatImplementationTest.php
parent9574c17ddc4c55ab191878164627c4501a565221 (diff)
downloadrss-bridge-d08d13f2c87b24fadb92e31c50dedc6e56c3c088.tar.gz
rss-bridge-d08d13f2c87b24fadb92e31c50dedc6e56c3c088.tar.zst
rss-bridge-d08d13f2c87b24fadb92e31c50dedc6e56c3c088.zip
refactor: introduce http Request object (#3926)
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;