Skip to content

Commit

Permalink
windows is buggy?
Browse files Browse the repository at this point in the history
  • Loading branch information
kkmuffme committed Sep 21, 2022
1 parent 4c2ca85 commit a37bf1d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/Internal/Codebase/InternalCallMapHandlerTest.php
Expand Up @@ -519,6 +519,12 @@ public function testIgnoresAreSortedAndUnique(): void
/** @var string */
$function = is_int($key) ? $value : $key;

// windows is ...
if ( strcmp($function, $previousFunction) < 0 ) {
echo $function . PHP_EOL;
echo $previousFunction . PHP_EOL;
}

$this->assertGreaterThan(0, strcmp($function, $previousFunction));
$previousFunction = $function;
}
Expand Down

0 comments on commit a37bf1d

Please sign in to comment.