Skip to content

Commit ea915de

Browse files
committed
#14 Fix array indentation and commas
1 parent bd310e8 commit ea915de

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/PathPreserverTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ public function testPreserveAndRollback()
3838

3939
// We simulate creation of
4040
$installPaths = array(
41-
$workingDirectory->getRoot()
41+
$workingDirectory->getRoot(),
4242
);
4343

4444
$preservePaths = array(
45-
$folder1,
46-
$file1,
45+
$folder1,
46+
$file1,
4747
);
4848

4949
$preserver = new PathPreserver($installPaths, $preservePaths, $cacheDirectory->getRoot(), $this->fs, $this->io);
@@ -126,12 +126,12 @@ public function testFileModes()
126126
$this->assertFileExists($file2, 'File 2 created.');
127127

128128
$installPaths = array(
129-
$folder1
129+
$folder1,
130130
);
131131
$preservePaths = array(
132-
$subfolder1,
133-
$file1,
134-
$file2,
132+
$subfolder1,
133+
$file1,
134+
$file2,
135135
);
136136

137137
$preserver = new PathPreserver($installPaths, $preservePaths, $cacheDirectory->getRoot(), $this->fs, $this->io);

0 commit comments

Comments
 (0)