diff options
author | 2022-04-26 00:57:59 +0200 | |
---|---|---|
committer | 2022-04-26 00:57:59 +0200 | |
commit | 0ef298f9cc5d2ab74ea9d41706998110fec0308f (patch) | |
tree | ef6692c1ddde0cb2adbaa7db0aa2bb139fb41e89 /tests/FormatImplementationTest.php | |
parent | b090b17bbf934a102723101911e30796520680b8 (diff) | |
download | rss-bridge-0ef298f9cc5d2ab74ea9d41706998110fec0308f.tar.gz rss-bridge-0ef298f9cc5d2ab74ea9d41706998110fec0308f.tar.zst rss-bridge-0ef298f9cc5d2ab74ea9d41706998110fec0308f.zip |
refactor: add php autoloader (#2655)
Diffstat (limited to 'tests/FormatImplementationTest.php')
-rw-r--r-- | tests/FormatImplementationTest.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/FormatImplementationTest.php b/tests/FormatImplementationTest.php index d4d7249f..e4501d68 100644 --- a/tests/FormatImplementationTest.php +++ b/tests/FormatImplementationTest.php @@ -33,7 +33,6 @@ class FormatImplementationTest extends TestCase { } private function setFormat($path) { - require_once $path; $this->class = basename($path, '.php'); $this->assertTrue(class_exists($this->class), 'class ' . $this->class . ' doesn\'t exist'); $this->obj = new $this->class(); |