Skip to content

Commit

Permalink
Fix Windows paths in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
epdenouden authored and sebastianbergmann committed Dec 6, 2018
1 parent ecb4c1c commit 51a7c5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/end-to-end/log-junit-phpt.phpt
Expand Up @@ -5,7 +5,7 @@ phpunit --log-junit php://stdout ../end-to-end/phpt-stderr.phpt
$_SERVER['argv'][1] = '--no-configuration';
$_SERVER['argv'][2] = '--log-junit';
$_SERVER['argv'][3] = 'php://stdout';
$_SERVER['argv'][4] = __DIR__ . '/../end-to-end/phpt-stderr.phpt';
$_SERVER['argv'][4] = \realpath(__DIR__ . '/../end-to-end/phpt-stderr.phpt');

require __DIR__ . '/../bootstrap.php';
PHPUnit\TextUI\Command::main();
Expand Down
2 changes: 1 addition & 1 deletion tests/end-to-end/log-teamcity-phpt.phpt
Expand Up @@ -5,7 +5,7 @@ phpunit --log-teamcity php://stdout ../end-to-end/phpt-stderr.phpt
$_SERVER['argv'][1] = '--no-configuration';
$_SERVER['argv'][2] = '--log-teamcity';
$_SERVER['argv'][3] = 'php://stdout';
$_SERVER['argv'][4] = __DIR__ . '/../end-to-end/phpt-stderr.phpt';
$_SERVER['argv'][4] = \realpath(__DIR__ . '/../end-to-end/phpt-stderr.phpt');

require __DIR__ . '/../bootstrap.php';
PHPUnit\TextUI\Command::main();
Expand Down

0 comments on commit 51a7c5b

Please sign in to comment.