From a20d5f9af07203b4ba77757ab447f182547a51b5 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Fri, 10 Aug 2018 15:33:32 +0200 Subject: [PATCH] tests: reuse RssBridge.php instead of implementing a custom solution --- tests/BridgeImplementationTest.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/BridgeImplementationTest.php b/tests/BridgeImplementationTest.php index aff2cb81..c0785087 100644 --- a/tests/BridgeImplementationTest.php +++ b/tests/BridgeImplementationTest.php @@ -4,9 +4,7 @@ use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestResult; use PHPUnit\Framework\AssertionFailedError; -require_once('Bridge.php'); -require_once('BridgeAbstract.php'); -require_once('FeedExpander.php'); +require_once(__DIR__ . '/../lib/RssBridge.php'); Bridge::setDir(__DIR__ . '/../bridges/');