:octocat: trying a non-existent directory

This commit is contained in:
codemasher
2021-06-05 21:34:00 +02:00
parent f092e86847
commit 4f6002ab7b
+2 -2
View File
@@ -76,9 +76,9 @@ abstract class QROutputTestAbstract extends TestCase{
# }
$this->expectException(QRCodeOutputException::class);
$this->expectExceptionMessage('Could not write data to cache file: /foo.bar');
$this->expectExceptionMessage('Could not write data to cache file: /foo/bar.test');
$this->options->cachefile = '/foo.bar';
$this->options->cachefile = '/foo/bar.test';
$this->outputInterface = $this->getOutputInterface($this->options);
$this->outputInterface->dump();
}