From 0d1f0c07fe3485f18ea23dbc7fc481ea625e4ab7 Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Thu, 18 Sep 2014 02:04:47 +0200 Subject: [PATCH] [ticket/12963] Fix the migration's finder for the tests (path, new instance) PHPBB3-12963 --- tests/test_framework/phpbb_database_test_case.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test_framework/phpbb_database_test_case.php b/tests/test_framework/phpbb_database_test_case.php index 15ab976b02..6b19689b2f 100644 --- a/tests/test_framework/phpbb_database_test_case.php +++ b/tests/test_framework/phpbb_database_test_case.php @@ -70,13 +70,15 @@ abstract class phpbb_database_test_case extends PHPUnit_Extensions_Database_Test $finder = new \phpbb\finder(new \phpbb\filesystem(), $phpbb_root_path, null, $phpEx); $classes = $finder->core_path('phpbb/') - ->core_directory('/db/migration/data') + ->core_directory('db/migration/data/') ->set_extensions($setup_extensions) - ->extension_directory('migration') + ->extension_directory('/migration') ->get_classes(); // @deprecated 3.1.0-RC4 (To be removed: 3.2.0) + $finder = new \phpbb\finder(new \phpbb\filesystem(), $phpbb_root_path, null, $phpEx); $classes_deprecated = $finder + ->set_extensions($setup_extensions) ->extension_directory('/migrations') ->get_classes();