Passed
Push — main ( e485ec...2a6706 )
by Sebastian
04:37
created
tests/unit/Runner/Action/Cli/Command/Placeholder/BranchFilesTest.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@  discard block
 block discarded – undo
48 48
             ->method('getBranchRevFromRefLog')
49 49
             ->willReturn('main');
50 50
         $info->expects($this->once())
51
-             ->method('getCurrentBranch')
52
-             ->willReturn('foo');
51
+                ->method('getCurrentBranch')
52
+                ->willReturn('foo');
53 53
 
54 54
         $repo->expects($this->atLeastOnce())->method('getLogOperator')->willReturn($log);
55 55
         $repo->expects($this->atLeastOnce())->method('getInfoOperator')->willReturn($info);
@@ -102,8 +102,8 @@  discard block
 block discarded – undo
102 102
             ->method('getChangedFilesSince')
103 103
             ->willReturn(['file1.php', 'file2.php', 'README.md', 'foo.txt']);
104 104
         $info->expects($this->once())
105
-             ->method('getCurrentBranch')
106
-             ->willReturn('foo');
105
+                ->method('getCurrentBranch')
106
+                ->willReturn('foo');
107 107
 
108 108
         $repo->expects($this->atLeastOnce())->method('getLogOperator')->willReturn($log);
109 109
         $repo->expects($this->atLeastOnce())->method('getInfoOperator')->willReturn($info);
@@ -129,8 +129,8 @@  discard block
 block discarded – undo
129 129
             ->method('getChangedFilesSince')
130 130
             ->willReturn(['foo/file1.php', 'foo/file2.php', 'README.md']);
131 131
         $info->expects($this->once())
132
-             ->method('getCurrentBranch')
133
-             ->willReturn('foo');
132
+                ->method('getCurrentBranch')
133
+                ->willReturn('foo');
134 134
 
135 135
         $repo->expects($this->atLeastOnce())->method('getLogOperator')->willReturn($log);
136 136
         $repo->expects($this->atLeastOnce())->method('getInfoOperator')->willReturn($info);
Please login to merge, or discard this patch.