Completed
Push — master ( 38f7b5...1a5565 )
by Jeroen De
18s queued 12s
created
tests/phpunit/Unit/CompoundQueryResultTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,11 +21,11 @@  discard block
 block discarded – undo
21 21
 	protected function setUp() : void {
22 22
 		parent::setUp();
23 23
 
24
-		$this->store = $this->getMockBuilder( '\SMW\Store' )
24
+		$this->store = $this->getMockBuilder('\SMW\Store')
25 25
 			->disableOriginalConstructor()
26 26
 			->getMockForAbstractClass();
27 27
 
28
-		$this->query = $this->getMockBuilder( '\SMWQuery' )
28
+		$this->query = $this->getMockBuilder('\SMWQuery')
29 29
 			->disableOriginalConstructor()
30 30
 			->getMock();
31 31
 	}
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
 		$this->assertInstanceOf(
36 36
 			CompoundQueryResult::class,
37
-			new CompoundQueryResult( [], $this->query, [], $this->store )
37
+			new CompoundQueryResult([], $this->query, [], $this->store)
38 38
 		);
39 39
 	}
40 40
 
Please login to merge, or discard this patch.