Skip to content

Commit 1ae67c7

Browse files
committed
Adjusted child process adapter test for mode changes in it
1 parent 558e8b7 commit 1ae67c7

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

tests/ChildProcess/AdapterTest.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function callFilesystemProvider()
4646
'mkdir',
4747
[
4848
'path' => 'foo.bar',
49-
'mode' => Adapter::CREATION_MODE,
49+
'mode' => 770,
5050
],
5151
],
5252
],
@@ -60,7 +60,7 @@ public function callFilesystemProvider()
6060
'mkdir',
6161
[
6262
'path' => 'foo.bar',
63-
'mode' => 'rwxrwxrwx',
63+
'mode' => 777,
6464
],
6565
],
6666
],
@@ -97,6 +97,7 @@ public function callFilesystemProvider()
9797
'touch',
9898
[
9999
'path' => 'foo.bar',
100+
'mode' => 770,
100101
],
101102
],
102103
],
@@ -134,7 +135,7 @@ public function callFilesystemProvider()
134135
'chmod',
135136
[
136137
'foo.bar',
137-
123,
138+
0123,
138139
],
139140
[
140141
'chmod',

0 commit comments

Comments
 (0)