Skip to content

Commit

Permalink
Fix: Skip test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Jun 29, 2020
1 parent 3780528 commit 6fa45a3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/end-to-end/cli/columns-max.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ $_SERVER['argv'][3] = __DIR__ . '/../../_files/BankAccountTest.php';

require __DIR__ . '/../../bootstrap.php';
PHPUnit\TextUI\Command::main();
--SKIPIF--
<?php

if (PHP_OS_FAMILY === 'Windows') {
die('Maximum column length resolves to different value on Windows systems');
}

?>
--EXPECTF--
PHPUnit %s by Sebastian Bergmann and contributors.

Expand Down

0 comments on commit 6fa45a3

Please sign in to comment.