diff options
author | 2022-06-22 18:27:20 +0200 | |
---|---|---|
committer | 2022-06-22 18:27:20 +0200 | |
commit | af5648d928c144dfddb8eb8fd88f7fd1681aabdb (patch) | |
tree | ba423c91e58660022cff009d023b52c9214eeb7d /tests | |
parent | e9b8a1f9f97b5b2e70b86770a9bde06ebfc58497 (diff) | |
download | rss-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.php | 1 |
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); |