aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-03-13 11:00:31 +0100
committerAndreas Fischer <bantu@phpbb.com>2014-03-13 11:00:31 +0100
commit16e7a1d9315338a0cf2f048cb0fe3fd5905e182e (patch)
tree71faa48c134e0bbba290667aa963d51f777d6f65
parentdbebe30c9a109e5be78590c4a49a71122ad411c6 (diff)
parent86a88751a843a800020aad5405a531c3753512e1 (diff)
downloadforums-16e7a1d9315338a0cf2f048cb0fe3fd5905e182e.tar
forums-16e7a1d9315338a0cf2f048cb0fe3fd5905e182e.tar.gz
forums-16e7a1d9315338a0cf2f048cb0fe3fd5905e182e.tar.bz2
forums-16e7a1d9315338a0cf2f048cb0fe3fd5905e182e.tar.xz
forums-16e7a1d9315338a0cf2f048cb0fe3fd5905e182e.zip
Merge pull request #2115 from Elsensee/ticket/12267
[ticket/12267] Replace $php_ext with $phpEx * Elsensee/ticket/12267: [ticket/12267] Replace $php_ext with $phpEx
-rw-r--r--tests/test_framework/phpbb_functional_test_case.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php
index 6a04dac691..411d97b590 100644
--- a/tests/test_framework/phpbb_functional_test_case.php
+++ b/tests/test_framework/phpbb_functional_test_case.php
@@ -192,7 +192,7 @@ class phpbb_functional_test_case extends phpbb_test_case
$db_tools,
self::$config['table_prefix'] . 'migrations',
$phpbb_root_path,
- $php_ext,
+ $phpEx,
self::$config['table_prefix'],
array(),
new \phpbb\db\migration\helper()
@@ -207,7 +207,7 @@ class phpbb_functional_test_case extends phpbb_test_case
new phpbb\filesystem(),
self::$config['table_prefix'] . 'ext',
dirname(__FILE__) . '/',
- $php_ext,
+ $phpEx,
$this->get_cache_driver()
);