Completed
Pull Request — master (#924)
by Greg
02:10
created
tests/functional/WriteFileTest.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@  discard block
 block discarded – undo
27 27
     {
28 28
         // write lines with WriteToFile task
29 29
         $result = $this->taskWriteToFile('blogpost.md')
30
-           ->line('****')
31
-           ->line('hello world')
32
-           ->line('****')
33
-           ->run();
30
+            ->line('****')
31
+            ->line('hello world')
32
+            ->line('****')
33
+            ->run();
34 34
         $this->assertTrue($result->wasSuccessful());
35 35
         $this->assertFileExists('blogpost.md');
36 36
         $contents = file_get_contents('blogpost.md');
@@ -46,9 +46,9 @@  discard block
 block discarded – undo
46 46
     public function appendToFile()
47 47
     {
48 48
         $result = $this->taskWriteToFile('a.txt')
49
-           ->append()
50
-           ->line('hello world')
51
-           ->run();
49
+            ->append()
50
+            ->line('hello world')
51
+            ->run();
52 52
         $this->assertTrue($result->wasSuccessful());
53 53
         $this->assertFileExists('a.txt');
54 54
         $contents = file_get_contents('a.txt');
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     public function testWouldChange()
63 63
     {
64 64
         $writeTask = $this->taskWriteToFile('a.txt')
65
-           ->append();
65
+            ->append();
66 66
         $this->assertEquals(false, $writeTask->wouldChange(), "No changes to test file.");
67 67
         $writeTask->line('hello world');
68 68
         $this->assertEquals(true, $writeTask->wouldChange(), "Test file would change.");
@@ -90,15 +90,15 @@  discard block
 block discarded – undo
90 90
     {
91 91
         // append lines with WriteToFile task, but only if pattern does not match
92 92
         $result = $this->taskWriteToFile('blogpost.md')
93
-           ->line('****')
94
-           ->line('hello world')
95
-           ->line('****')
96
-           ->appendUnlessMatches('/hello/', 'Should not add this')
97
-           ->appendUnlessMatches('/goodbye/', 'Should add this')
98
-           ->appendIfMatches('/hello/', ' and should also add this')
99
-           ->appendIfMatches('/goodbye/', ' but should not add this')
100
-           ->appendIfMatches('/should/', '!')
101
-           ->run();
93
+            ->line('****')
94
+            ->line('hello world')
95
+            ->line('****')
96
+            ->appendUnlessMatches('/hello/', 'Should not add this')
97
+            ->appendUnlessMatches('/goodbye/', 'Should add this')
98
+            ->appendIfMatches('/hello/', ' and should also add this')
99
+            ->appendIfMatches('/goodbye/', ' but should not add this')
100
+            ->appendIfMatches('/should/', '!')
101
+            ->run();
102 102
         $this->assertTrue($result->wasSuccessful());
103 103
         $this->assertFileExists('blogpost.md');
104 104
         $contents = file_get_contents('blogpost.md');
Please login to merge, or discard this patch.