diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-09-18 02:04:47 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-09-18 02:04:47 +0200 |
commit | 0d1f0c07fe3485f18ea23dbc7fc481ea625e4ab7 (patch) | |
tree | f49e6c5ce12dee778a15f48eb624b999894192cb /tests/test_framework | |
parent | 6c043c4a86d3233ea8360fd96f8898c2793f36f5 (diff) | |
download | forums-0d1f0c07fe3485f18ea23dbc7fc481ea625e4ab7.tar forums-0d1f0c07fe3485f18ea23dbc7fc481ea625e4ab7.tar.gz forums-0d1f0c07fe3485f18ea23dbc7fc481ea625e4ab7.tar.bz2 forums-0d1f0c07fe3485f18ea23dbc7fc481ea625e4ab7.tar.xz forums-0d1f0c07fe3485f18ea23dbc7fc481ea625e4ab7.zip |
[ticket/12963] Fix the migration's finder for the tests (path, new instance)
PHPBB3-12963
Diffstat (limited to 'tests/test_framework')
-rw-r--r-- | tests/test_framework/phpbb_database_test_case.php | 6 |
1 files 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(); |