diff --git a/tests/src/Kernel/ReadinessValidation/WritableFileSystemValidatorTest.php b/tests/src/Kernel/ReadinessValidation/WritableFileSystemValidatorTest.php
index ecd605c8cdcf2e4d5ad8f90e6822a7555037ad34..eb358416075c240f6607181fa585cc6cd5db99a6 100644
--- a/tests/src/Kernel/ReadinessValidation/WritableFileSystemValidatorTest.php
+++ b/tests/src/Kernel/ReadinessValidation/WritableFileSystemValidatorTest.php
@@ -100,8 +100,8 @@ class WritableFileSystemValidatorTest extends AutomaticUpdatesKernelTestBase {
    */
   public function testWritable(array $paths, array $expected_results): void {
     $files = vfsStream::setup('htdoc', 0777);
-    $files->addChild(vfsStream::newDirectory('root', $paths['root'] ? 0777: 0444));
-    $files->addChild(vfsStream::newDirectory('vendor', $paths['vendor'] ? 0777: 0444));
+    $files->addChild(vfsStream::newDirectory('root', $paths['root'] ? 0777 : 0444));
+    $files->addChild(vfsStream::newDirectory('vendor', $paths['vendor'] ? 0777 : 0444));
 
     $path_locator = $this->prophesize(PathLocator::class);
     $path_locator->getVendorDirectory()->willReturn(vfsStream::url('htdoc/vendor'));