diff options
author | 2014-05-03 03:36:01 +0200 | |
---|---|---|
committer | 2014-05-03 04:05:25 +0200 | |
commit | 3dee1db2603c84b53c9fe93b5da95d75846878d6 (patch) | |
tree | 41fd466903f59f47d4e0f849f9735d4c43cb5a72 /phpunit.xml.dist | |
parent | Merge remote-tracking branch 'github-bantu/ticket/11860' into develop-olympus (diff) | |
download | phpbb-3dee1db2603c84b53c9fe93b5da95d75846878d6.tar.gz phpbb-3dee1db2603c84b53c9fe93b5da95d75846878d6.tar.bz2 phpbb-3dee1db2603c84b53c9fe93b5da95d75846878d6.zip |
[ticket/12485] Broken tests due to absolute exclude
PHPBB3-12485
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r-- | phpunit.xml.dist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 4c91f8e373..f5871e2eeb 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -13,7 +13,7 @@ > <testsuites> <testsuite name="phpBB Test Suite"> - <directory suffix="_test.php">./tests/</directory> + <directory suffix="_test.php">./tests</directory> <exclude>./tests/functional</exclude> <exclude>tests/lint_test.php</exclude> </testsuite> @@ -34,7 +34,7 @@ <filter> <blacklist> - <directory>./tests/</directory> + <directory>./tests</directory> </blacklist> </filter> </phpunit> |