Passed
Push — master ( f602a9...185df8 )
by Aimeos
02:35
created
lib/custom/tests/MShop/Customer/Manager/LaravelTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -216,13 +216,13 @@  discard block
 block discarded – undo
216 216
 		$expr[] = $search->compare( '==', 'customer.longitude', '10.0' );
217 217
 		$expr[] = $search->compare( '==', 'customer.latitude', '50.0' );
218 218
 
219
-		$param = ['text','default', 0];
219
+		$param = ['text', 'default', 0];
220 220
 		$expr[] = $search->compare( '==', $search->createFunction( 'customer:has', $param ), null );
221 221
 
222
-		$param = ['text','default', $listItem->getRefId()];
222
+		$param = ['text', 'default', $listItem->getRefId()];
223 223
 		$expr[] = $search->compare( '!=', $search->createFunction( 'customer:has', $param ), null );
224 224
 
225
-		$param = ['text','default'];
225
+		$param = ['text', 'default'];
226 226
 		$expr[] = $search->compare( '!=', $search->createFunction( 'customer:has', $param ), null );
227 227
 
228 228
 		$param = ['text'];
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
 		$this->assertEquals( 2, count( $results ) );
286 286
 		$this->assertEquals( 3, $total );
287 287
 
288
-		foreach($results as $itemId => $item) {
288
+		foreach( $results as $itemId => $item ) {
289 289
 			$this->assertEquals( $itemId, $item->getId() );
290 290
 		}
291 291
 	}
Please login to merge, or discard this patch.