aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGravatar Dag <me@dvikan.no> 2022-06-22 18:27:20 +0200
committerGravatar GitHub <noreply@github.com> 2022-06-22 18:27:20 +0200
commitaf5648d928c144dfddb8eb8fd88f7fd1681aabdb (patch)
treeba423c91e58660022cff009d023b52c9214eeb7d /tests
parente9b8a1f9f97b5b2e70b86770a9bde06ebfc58497 (diff)
downloadrss-bridge-af5648d928c144dfddb8eb8fd88f7fd1681aabdb.tar.gz
rss-bridge-af5648d928c144dfddb8eb8fd88f7fd1681aabdb.tar.zst
rss-bridge-af5648d928c144dfddb8eb8fd88f7fd1681aabdb.zip
refactor: FormatFactory (#2832)
Diffstat (limited to 'tests')
-rw-r--r--tests/Formats/BaseFormatTest.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/Formats/BaseFormatTest.php b/tests/Formats/BaseFormatTest.php
index dac0e341..94da7b04 100644
--- a/tests/Formats/BaseFormatTest.php
+++ b/tests/Formats/BaseFormatTest.php
@@ -53,7 +53,6 @@ abstract class BaseFormatTest extends TestCase {
protected function formatData(string $formatName, \stdClass $sample): string {
$formatFac = new FormatFactory();
- $formatFac->setWorkingDir(PATH_LIB_FORMATS);
$format = $formatFac->create($formatName);
$format->setItems($sample->items);
$format->setExtraInfos($sample->meta);