1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-05 16:27:38 +02:00

[ticket/13192] Order test cases consistently

PHPBB3-13192
This commit is contained in:
Marc Alexander
2015-01-09 13:38:52 +01:00
parent 281cc53532
commit 7ba1a96427

View File

@@ -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'),
);
}