aboutsummaryrefslogtreecommitdiff
path: root/tests/Bridges/BridgeImplementationTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Bridges/BridgeImplementationTest.php')
-rw-r--r--tests/Bridges/BridgeImplementationTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/Bridges/BridgeImplementationTest.php b/tests/Bridges/BridgeImplementationTest.php
index cf03f356..807649fc 100644
--- a/tests/Bridges/BridgeImplementationTest.php
+++ b/tests/Bridges/BridgeImplementationTest.php
@@ -3,7 +3,6 @@
namespace RssBridge\Tests\Bridges;
use BridgeAbstract;
-use BridgeInterface;
use FeedExpander;
use PHPUnit\Framework\TestCase;
@@ -29,7 +28,7 @@ class BridgeImplementationTest extends TestCase
public function testClassType($path)
{
$this->setBridge($path);
- $this->assertInstanceOf(BridgeInterface::class, $this->obj);
+ $this->assertInstanceOf(BridgeAbstract::class, $this->obj);
}
/**