Passed
Push — master ( f11a29...41b844 )
by Aimeos
01:35
created
lib/custom/tests/MShop/Customer/Manager/FosUserTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -220,13 +220,13 @@  discard block
 block discarded – undo
220 220
 		$expr[] = $search->compare( '==', 'customer.longitude', '10.0' );
221 221
 		$expr[] = $search->compare( '==', 'customer.latitude', '50.0' );
222 222
 
223
-		$param = ['text','default', 0];
223
+		$param = ['text', 'default', 0];
224 224
 		$expr[] = $search->compare( '==', $search->createFunction( 'customer:has', $param ), null );
225 225
 
226
-		$param = ['text','default', $listItem->getRefId()];
226
+		$param = ['text', 'default', $listItem->getRefId()];
227 227
 		$expr[] = $search->compare( '!=', $search->createFunction( 'customer:has', $param ), null );
228 228
 
229
-		$param = ['text','default'];
229
+		$param = ['text', 'default'];
230 230
 		$expr[] = $search->compare( '!=', $search->createFunction( 'customer:has', $param ), null );
231 231
 
232 232
 		$param = ['text'];
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
 		$this->assertEquals( 2, count( $results ) );
290 290
 		$this->assertEquals( 3, $total );
291 291
 
292
-		foreach($results as $itemId => $item) {
292
+		foreach( $results as $itemId => $item ) {
293 293
 			$this->assertEquals( $itemId, $item->getId() );
294 294
 		}
295 295
 	}
Please login to merge, or discard this patch.