Skip to content

Commit 29d39cb

Browse files
committed
Corrected correct directory creation mode
1 parent cc9c56b commit 29d39cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/Adapters/DirectoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function testCreate(LoopInterface $loop, FilesystemInterface $filesystem)
7070
$dir = $this->tmpDir . 'path';
7171
$this->await($filesystem->dir($dir)->createRecursive(), $loop);
7272
$this->assertTrue(file_exists($dir));
73-
$this->assertSame('0077', substr(sprintf('%o', fileperms($dir)), -4));
73+
$this->assertSame('0770', substr(sprintf('%o', fileperms($dir)), -4));
7474
}
7575

7676
/**

0 commit comments

Comments
 (0)