:octocat: fix windows test testSaveException()

This commit is contained in:
codemasher
2021-11-18 08:39:41 +01:00
parent 333d49fb69
commit 39ed4c36da
+2 -2
View File
@@ -71,9 +71,9 @@ abstract class QROutputTestAbstract extends TestCase{
*/
public function testSaveException():void{
$this->expectException(QRCodeOutputException::class);
$this->expectExceptionMessage('Could not write data to cache file: /foo');
$this->expectExceptionMessage('Could not write data to cache file: /foo/bar.test');
$this->options->cachefile = '/foo';
$this->options->cachefile = '/foo/bar.test';
$this->outputInterface = $this->getOutputInterface($this->options);
$this->outputInterface->dump();
}