Completed
Push — master ( 39caf5...4ceab2 )
by Sam
02:39
created
tests/cli/Database/LimitTraitTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,12 +22,12 @@
 block discarded – undo
22 22
 		$mock = $this->getMockForTrait('\Jalle19\StatusManager\Database\LimitTrait');
23 23
 
24 24
 		$mock->expects($this->once())
25
-		     ->method('limit');
25
+			 ->method('limit');
26 26
 
27 27
 		$mock->filterByLimit(10);
28 28
 
29 29
 		$mock->expects($this->never())
30
-		     ->method('limit');
30
+			 ->method('limit');
31 31
 
32 32
 		$mock->filterByLimit(null);
33 33
 	}
Please login to merge, or discard this patch.