mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 19:38:53 +00:00
Merge pull request #3609 from Nicofuma/ticket/13839
[ticket/13839] Don't be dependent on the phpBB root directory name in tests * Nicofuma/ticket/13839: [ticket/13839] Don't be dependent on the phpBB root directory name in tests
This commit is contained in:
commit
10e625d30a
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ class phpbb_template_asset_test extends phpbb_test_case
|
|||
array('.', 'foo/bar', 'foo/bar'),
|
||||
array('../', 'foo/bar', 'foo/bar'),
|
||||
array('./phpBB/', 'foo/bar', 'foo/bar'),
|
||||
array('../', __DIR__ . '/foo/bar', '../phpbb/tests/template/foo/bar'),
|
||||
array('../', __DIR__ . '/foo/bar', '../' . basename(dirname(dirname(__DIR__))) . '/tests/template/foo/bar'),
|
||||
array('./', __DIR__ . '/foo/bar', './tests/template/foo/bar'),
|
||||
array('./phpBB/', __DIR__ . '/foo/bar', 'tests/template/foo/bar'),
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue