aboutsummaryrefslogtreecommitdiffstats
path: root/tests/path_helper
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-01-09 13:38:52 +0100
committerMarc Alexander <admin@m-a-styles.de>2015-01-09 13:38:52 +0100
commit7ba1a9642715945f7e2641cfda7e1d188ef2a8d2 (patch)
tree2656b7a99695b71fb6382347d74efbffe99696e3 /tests/path_helper
parent281cc5353208258e7f4a9032f720c5f1ae0fb8dc (diff)
downloadforums-7ba1a9642715945f7e2641cfda7e1d188ef2a8d2.tar
forums-7ba1a9642715945f7e2641cfda7e1d188ef2a8d2.tar.gz
forums-7ba1a9642715945f7e2641cfda7e1d188ef2a8d2.tar.bz2
forums-7ba1a9642715945f7e2641cfda7e1d188ef2a8d2.tar.xz
forums-7ba1a9642715945f7e2641cfda7e1d188ef2a8d2.zip
[ticket/13192] Order test cases consistently
PHPBB3-13192
Diffstat (limited to 'tests/path_helper')
-rw-r--r--tests/path_helper/path_helper_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/path_helper/path_helper_test.php b/tests/path_helper/path_helper_test.php
index 62c2a24b22..3b25eba716 100644
--- a/tests/path_helper/path_helper_test.php
+++ b/tests/path_helper/path_helper_test.php
@@ -430,10 +430,10 @@ class phpbb_path_helper_test extends phpbb_test_case
array('index', false, 'index'),
array('foo/index', true, 'foo/index'),
array('foo/index', false, 'foo/index'),
- array('app.php/foo', false, 'app.php/foo'),
array('app.php/foo', true, 'foo'),
- array('/../app.php/foo', false, '../app.php/foo'),
+ array('app.php/foo', false, 'app.php/foo'),
array('/../app.php/foo', true, '../foo'),
+ array('/../app.php/foo', false, '../app.php/foo'),
);
}