diff options
author | Nicofuma <github@nicofuma.fr> | 2015-02-03 12:41:31 +0100 |
---|---|---|
committer | Nicofuma <github@nicofuma.fr> | 2015-02-03 13:37:52 +0100 |
commit | f4b42c961f5729b0bbadca8a897410f890228364 (patch) | |
tree | 03dd67a9342ec4cc21acb7eecf25f4a718111f96 /tests/template | |
parent | 199e7cf5a1b5aa08ce41fbf848e443f10828c4dd (diff) | |
download | forums-f4b42c961f5729b0bbadca8a897410f890228364.tar forums-f4b42c961f5729b0bbadca8a897410f890228364.tar.gz forums-f4b42c961f5729b0bbadca8a897410f890228364.tar.bz2 forums-f4b42c961f5729b0bbadca8a897410f890228364.tar.xz forums-f4b42c961f5729b0bbadca8a897410f890228364.zip |
[ticket/13139] Fix tests
PHPBB3-13139
Diffstat (limited to 'tests/template')
-rw-r--r-- | tests/template/template_includecss_test.php | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/tests/template/template_includecss_test.php b/tests/template/template_includecss_test.php index a8db74c3f1..96980e17c6 100644 --- a/tests/template/template_includecss_test.php +++ b/tests/template/template_includecss_test.php @@ -83,13 +83,6 @@ class phpbb_template_template_includecss_test extends phpbb_template_template_te public function template_data() { - $url_base = explode('/', dirname(__FILE__)); - foreach ($url_base as &$dir) - { - $dir = rawurlencode($dir); - } - $url_base = implode('/', $url_base); - return array( /* array( @@ -107,11 +100,11 @@ class phpbb_template_template_includecss_test extends phpbb_template_template_te ), array( array('TEST' => 3), - '<link href="' . $url_base . '/ext/include/css/styles/all/theme/test.css?assets_version=1" rel="stylesheet" type="text/css" media="screen, projection" />', + '<link href="tests/template/ext/include/css/styles/all/theme/test.css?assets_version=1" rel="stylesheet" type="text/css" media="screen, projection" />', ), array( array('TEST' => 4), - '<link href="' . $url_base . '/ext/include/css/styles/all/theme/child_only.css?assets_version=1" rel="stylesheet" type="text/css" media="screen, projection" />', + '<link href="tests/template/ext/include/css/styles/all/theme/child_only.css?assets_version=1" rel="stylesheet" type="text/css" media="screen, projection" />', ), ); } |