From 39ed4c36dac59f61546d2fc4cef4318a9e5135ee Mon Sep 17 00:00:00 2001 From: codemasher Date: Thu, 18 Nov 2021 08:39:41 +0100 Subject: [PATCH] :octocat: fix windows test testSaveException() --- tests/Output/QROutputTestAbstract.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Output/QROutputTestAbstract.php b/tests/Output/QROutputTestAbstract.php index 323fae908..b89798897 100644 --- a/tests/Output/QROutputTestAbstract.php +++ b/tests/Output/QROutputTestAbstract.php @@ -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(); }