mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-24 10:37:52 +00:00
:octocat: fix windows test testSaveException()
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user