Completed
Push — master ( f95de3...4b29a6 )
by
unknown
15:25
created
tests/phpunit/Unit/SemanticFormsSelectInputTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 		$isDisabled = false;
27 27
 
28 28
 		$otherArgs = [ 'template' => 'Foo', 'field' => '',
29
-		                    'function' => 'Bar', 'is_list' => true ];
29
+							'function' => 'Bar', 'is_list' => true ];
30 30
 
31 31
 		$parserOutput = $this->getMockBuilder( '\ParserOutput' )
32 32
 			->disableOriginalConstructor()->getMock();
Please login to merge, or discard this patch.
tests/phpunit/Unit/ApiSemanticFormsSelectTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 	protected function setUp(): void {
26 26
 		parent::setUp();
27 27
 		$parameters = [ 'action' => 'sformsselect', 'approach' => 'smw',
28
-		                     'query'  => 'abc', 'sep' => ',' ];
28
+							 'query'  => 'abc', 'sep' => ',' ];
29 29
 
30 30
 		$this->ApiMain = new ApiMain(
31 31
 			$this->newRequestContext( $parameters ), true
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
 	public function testGetParamDescription() {
71 71
 		$tdata = [ 'approach' => 'The actual approach: function or smw',
72
-		                'query'    => 'The query of the former' ];
72
+						'query'    => 'The query of the former' ];
73 73
 		$this->assertEquals( $this->ApiSFS->getParamDescription(), $tdata );
74 74
 	}
75 75
 
Please login to merge, or discard this patch.
tests/phpunit/Unit/ApiSemanticFormsSelectRequestProcessorTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 	) {
66 66
 
67 67
 		$parameters = [ 'approach' => 'smw', 'query' => 'foo, baa, gaah',
68
-		                     'sep'      => ',' ];
68
+							 'sep'      => ',' ];
69 69
 
70 70
 		$this->assertIsObject(
71 71
 			$this->ApiSFSRP->getJsonDecodedResultValuesForRequestParameters(
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 	public function testSetDebugFlag_doProcessQueryFor() {
89 89
 		$this->ApiSFSRP->setDebugFlag( true );
90 90
 		$parameters = [ 'approach' => 'smw', 'query' => 'my Query,query2',
91
-		                     'sep'      => ',' ];
91
+							 'sep'      => ',' ];
92 92
 
93 93
 		$this->assertIsObject(
94 94
 			$this->ApiSFSRP->getJsonDecodedResultValuesForRequestParameters(
Please login to merge, or discard this patch.