We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b6c822 commit 84074bfCopy full SHA for 84074bf
tests/Unit/Drivers/TextDriverTest.php
@@ -33,12 +33,13 @@ public function it_can_serialize_when_given_OS_dependant_line_endings()
33
{
34
$driver = new TextDriver();
35
36
- $expected = <<<EOF
37
-
38
- GET|HEAD / ..................................................... index
+ $expected = implode("\n", [
+ '',
+ ' GET|HEAD / ..................................................... index',
39
40
+ ' Showing [1] routes'
41
+ ]);
42
- Showing [1] routes
-EOF;
43
// Due to using PHP_EOL this should fail (conditionally) when run on windows
44
$actual = implode(PHP_EOL, [
45
'',
0 commit comments