From 4f6002ab7b93d03462e25a8152ef743f19ea0db7 Mon Sep 17 00:00:00 2001 From: codemasher Date: Sat, 5 Jun 2021 21:34:00 +0200 Subject: [PATCH] :octocat: trying a non-existent directory --- 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 05dfed4e7..c41f979bb 100644 --- a/tests/Output/QROutputTestAbstract.php +++ b/tests/Output/QROutputTestAbstract.php @@ -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(); }