From ca351edbfeda6387f9646af78193e830a5e7f331 Mon Sep 17 00:00:00 2001 From: Dag Date: Thu, 8 Jun 2023 23:44:26 +0200 Subject: [PATCH] test: use correct path for bridges (#3427) --- tests/Bridges/BridgeImplementationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Bridges/BridgeImplementationTest.php b/tests/Bridges/BridgeImplementationTest.php index ab66d0a8..cf03f356 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(__DIR__ . '/../bridges/*Bridge.php') as $path) { + foreach (glob(__DIR__ . '/../../bridges/*Bridge.php') as $path) { $bridges[basename($path, '.php')] = [$path]; } return $bridges;