From 7712890719c396df82fad94e5e7c562db4d1d91a Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Thu, 20 Feb 2020 10:03:04 +0100 Subject: [PATCH] Fix CS/WS issue --- tests/unit/Framework/AssertTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/Framework/AssertTest.php b/tests/unit/Framework/AssertTest.php index f120253ca4d..26551d10cf7 100644 --- a/tests/unit/Framework/AssertTest.php +++ b/tests/unit/Framework/AssertTest.php @@ -650,6 +650,7 @@ public function testAssertFileIsNotReadable(): void \sys_get_temp_dir(), 'unreadable' ); + \chmod($tempFile, \octdec('0')); $this->assertFileIsNotReadable($tempFile);