Remove newlines from command display
continuous-integration/drone/push Build is failing Details

main
Hugo Thunnissen 2 years ago
parent 1657d2488e
commit cee774155d

@ -157,7 +157,7 @@ class InstallCommandTest extends TestCase
$this->assertNotEquals(0, $tester->getStatusCode()); $this->assertNotEquals(0, $tester->getStatusCode());
$this->assertStringContainsString( $this->assertStringContainsString(
'is not found for package test/two', 'is not found for package test/two',
$tester->getDisplay() \str_replace(PHP_EOL, '', $tester->getDisplay())
); );
} }

Loading…
Cancel
Save