Passed
Push — master ( 079a9e...374fd3 )
by Konrad
24:04
created
tests/Integration/Store/InMemoryStoreSqlite/Query/InsertIntoQueryTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -150,13 +150,13 @@
 block discarded – undo
150 150
         // asking for resources via a ...
151 151
         $res = $this->subjectUnderTest->query('SELECT ?iri WHERE {?iri a <http://ex/Person>}');
152 152
         $this->assertEquals(
153
-            [['iri' => 'http://foo', 'iri type' => 'uri'], ['iri' => 'http://bar', 'iri type' => 'uri'],],
153
+            [['iri' => 'http://foo', 'iri type' => 'uri'], ['iri' => 'http://bar', 'iri type' => 'uri'], ],
154 154
             $res['result']['rows']
155 155
         );
156 156
         // and rdf:type ...
157 157
         $res = $this->subjectUnderTest->query('SELECT ?iri WHERE {?iri rdf:type <http://ex/Person>}');
158 158
         $this->assertEquals(
159
-            [['iri' => 'http://foo', 'iri type' => 'uri'], ['iri' => 'http://bar', 'iri type' => 'uri'],],
159
+            [['iri' => 'http://foo', 'iri type' => 'uri'], ['iri' => 'http://bar', 'iri type' => 'uri'], ],
160 160
             $res['result']['rows']
161 161
         );
162 162
     }
Please login to merge, or discard this patch.