Fix tests on windows
parent
7e3626362e
commit
e96656d850
|
@ -74,10 +74,12 @@ class HttpDownloaderTest extends TestCase
|
||||||
));
|
));
|
||||||
|
|
||||||
// the <info> tag are consumed by the OutputFormatter, but not <warning> as that is not a default output format
|
// the <info> tag are consumed by the OutputFormatter, but not <warning> as that is not a default output format
|
||||||
$this->assertSame('<warning>Warning from $URL: old warning msg</warning>
|
$this->assertSame(
|
||||||
Info from $URL: old info msg
|
'<warning>Warning from $URL: old warning msg</warning>'.PHP_EOL.
|
||||||
<warning>Warning from $URL: visible warning</warning>
|
'Info from $URL: old info msg'.PHP_EOL.
|
||||||
Info from $URL: visible info
|
'<warning>Warning from $URL: visible warning</warning>'.PHP_EOL.
|
||||||
', $io->getOutput());
|
'Info from $URL: visible info'.PHP_EOL,
|
||||||
|
$io->getOutput()
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue