diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-09-13 10:04:35 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-09-13 10:04:35 -0500 |
commit | 21624e79fc512fd86177080010bb7d26c71ce3cb (patch) | |
tree | ac453dbf1b818f8383029146d5f8ca9a7920ad3e /tests/dbal/migrator_test.php | |
parent | f8e665751a0926807c8352eb2b2d942247d3c029 (diff) | |
download | forums-21624e79fc512fd86177080010bb7d26c71ce3cb.tar forums-21624e79fc512fd86177080010bb7d26c71ce3cb.tar.gz forums-21624e79fc512fd86177080010bb7d26c71ce3cb.tar.bz2 forums-21624e79fc512fd86177080010bb7d26c71ce3cb.tar.xz forums-21624e79fc512fd86177080010bb7d26c71ce3cb.zip |
[ticket/11832] Fix constructions of phpbb_filesystem
PHPBB3-11832
Diffstat (limited to 'tests/dbal/migrator_test.php')
-rw-r--r-- | tests/dbal/migrator_test.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/dbal/migrator_test.php b/tests/dbal/migrator_test.php index 4be1fbe176..5f0818d568 100644 --- a/tests/dbal/migrator_test.php +++ b/tests/dbal/migrator_test.php @@ -59,7 +59,12 @@ class phpbb_dbal_migrator_test extends phpbb_database_test_case $container, $this->db, $this->config, - new phpbb_filesystem(dirname(__FILE__) . '/../../phpBB/'), + new phpbb_filesystem( + new phpbb_symfony_request( + new phpbb_mock_request() + ), + dirname(__FILE__) . '/../../phpBB/' + ), 'phpbb_ext', dirname(__FILE__) . '/../../phpBB/', 'php', |