diff options
author | 2023-09-25 21:18:48 +0200 | |
---|---|---|
committer | 2023-09-25 21:18:48 +0200 | |
commit | cd30c25b08dc5ecd048e54c8abbbecd72309ab5e (patch) | |
tree | 5defffb410945e3c4dcff8c2b3b410034588aaba /tests/Formats/FormatImplementationTest.php | |
parent | e1b911fc1f3416d49c5ad5cc68587f64ab8890eb (diff) | |
download | rss-bridge-cd30c25b08dc5ecd048e54c8abbbecd72309ab5e.tar.gz rss-bridge-cd30c25b08dc5ecd048e54c8abbbecd72309ab5e.tar.zst rss-bridge-cd30c25b08dc5ecd048e54c8abbbecd72309ab5e.zip |
refactor (#3708)
Diffstat (limited to 'tests/Formats/FormatImplementationTest.php')
-rw-r--r-- | tests/Formats/FormatImplementationTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Formats/FormatImplementationTest.php b/tests/Formats/FormatImplementationTest.php index 55c6335f..03ac6d51 100644 --- a/tests/Formats/FormatImplementationTest.php +++ b/tests/Formats/FormatImplementationTest.php @@ -24,7 +24,7 @@ class FormatImplementationTest extends TestCase public function testClassType($path) { $this->setFormat($path); - $this->assertInstanceOf(FormatInterface::class, $this->obj); + $this->assertInstanceOf(FormatAbstract::class, $this->obj); } public function dataFormatsProvider() |