diff options
Diffstat (limited to 'tests/Bridges/BridgeImplementationTest.php')
-rw-r--r-- | tests/Bridges/BridgeImplementationTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Bridges/BridgeImplementationTest.php b/tests/Bridges/BridgeImplementationTest.php index 60f94d4a..ab66d0a8 100644 --- a/tests/Bridges/BridgeImplementationTest.php +++ b/tests/Bridges/BridgeImplementationTest.php @@ -222,7 +222,7 @@ class BridgeImplementationTest extends TestCase public function dataBridgesProvider() { $bridges = []; - foreach (glob(PATH_LIB_BRIDGES . '*Bridge.php') as $path) { + foreach (glob(__DIR__ . '/../bridges/*Bridge.php') as $path) { $bridges[basename($path, '.php')] = [$path]; } return $bridges; |