aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_framework/phpbb_test_case_helpers.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-06-08 17:02:31 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-06-08 17:07:35 +0200
commita61ab1e5e4bbe786d3f500438bb0dd6ca395989e (patch)
tree66edc87984c752091d0eb240a94a8955967fcdd1 /tests/test_framework/phpbb_test_case_helpers.php
parentc8ee6cb0c200b7e64ebbae11806f4daddfd8d93d (diff)
downloadforums-a61ab1e5e4bbe786d3f500438bb0dd6ca395989e.tar
forums-a61ab1e5e4bbe786d3f500438bb0dd6ca395989e.tar.gz
forums-a61ab1e5e4bbe786d3f500438bb0dd6ca395989e.tar.bz2
forums-a61ab1e5e4bbe786d3f500438bb0dd6ca395989e.tar.xz
forums-a61ab1e5e4bbe786d3f500438bb0dd6ca395989e.zip
[ticket/11550] Use new functionality from the test case helpers
Instead of duplicating the extension copy code, it is now in the helpers. So we remove the code from existing tests. PHPBB3-11550
Diffstat (limited to 'tests/test_framework/phpbb_test_case_helpers.php')
-rw-r--r--tests/test_framework/phpbb_test_case_helpers.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_framework/phpbb_test_case_helpers.php b/tests/test_framework/phpbb_test_case_helpers.php
index 0e0b5c2a8f..367bd3b142 100644
--- a/tests/test_framework/phpbb_test_case_helpers.php
+++ b/tests/test_framework/phpbb_test_case_helpers.php
@@ -38,7 +38,7 @@ class phpbb_test_case_helpers
// Copy our ext/ files from the test case to the board
foreach ($fixtures as $fixture)
{
- $this->copied_files = array_merge($this->copied_files, $this->copy_dir($fixtures_dir . 'ext/' . $fixture, $phpbb_root_path . 'ext/' . $fixture));
+ $this->copied_files = array_merge($this->copied_files, $this->copy_dir($fixtures_dir . $fixture, $phpbb_root_path . 'ext/' . $fixture));
}
}