Passed
Push — master ( b02400...f40054 )
by Aimeos
04:29
created
tests/MShop/Plugin/Manager/StandardTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 		$search = $this->object->filter()->slice( 0, 1 );
88 88
 		$conditions = array(
89 89
 			$search->compare( '~=', 'plugin.provider', 'Shipping' ),
90
-			$search->compare( '==', 'plugin.editor', $this->context->editor())
90
+			$search->compare( '==', 'plugin.editor', $this->context->editor() )
91 91
 		);
92 92
 		$search->setConditions( $search->and( $conditions ) );
93 93
 		$expected = $this->object->search( $search, ['plugin/type'] )->first( new \RuntimeException( 'No plugin item including "Shipping" found' ) );
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 		$search = $this->object->filter();
105 105
 		$conditions = array(
106 106
 			$search->compare( '~=', 'plugin.provider', 'Shipping' ),
107
-			$search->compare( '==', 'plugin.editor', $this->context->editor())
107
+			$search->compare( '==', 'plugin.editor', $this->context->editor() )
108 108
 		);
109 109
 		$search->setConditions( $search->and( $conditions ) );
110 110
 
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 		$expr[] = $search->compare( '==', 'plugin.status', 1 );
182 182
 		$expr[] = $search->compare( '>=', 'plugin.mtime', '1970-01-01 00:00:00' );
183 183
 		$expr[] = $search->compare( '>=', 'plugin.ctime', '1970-01-01 00:00:00' );
184
-		$expr[] = $search->compare( '==', 'plugin.editor', $this->context->editor());
184
+		$expr[] = $search->compare( '==', 'plugin.editor', $this->context->editor() );
185 185
 
186 186
 		$search->setConditions( $search->and( $expr ) );
187 187
 		$results = $this->object->search( $search, [], $total )->toArray();
@@ -195,15 +195,15 @@  discard block
 block discarded – undo
195 195
 
196 196
 		$expr = $conditions = [];
197 197
 		$expr[] = $search->compare( '~=', 'plugin.provider', 'Shipping,Example' );
198
-		$expr[] = $search->compare( '==', 'plugin.editor', $this->context->editor());
198
+		$expr[] = $search->compare( '==', 'plugin.editor', $this->context->editor() );
199 199
 		$conditions[] = $search->and( $expr );
200 200
 		$expr = [];
201 201
 		$expr[] = $search->compare( '~=', 'plugin.provider', 'ProductLimit,Example' );
202
-		$expr[] = $search->compare( '==', 'plugin.editor', $this->context->editor());
202
+		$expr[] = $search->compare( '==', 'plugin.editor', $this->context->editor() );
203 203
 		$conditions[] = $search->and( $expr );
204 204
 		$expr = [];
205 205
 		$expr[] = $search->compare( '~=', 'plugin.provider', 'BasketLimits,Example' );
206
-		$expr[] = $search->compare( '==', 'plugin.editor', $this->context->editor());
206
+		$expr[] = $search->compare( '==', 'plugin.editor', $this->context->editor() );
207 207
 		$conditions[] = $search->and( $expr );
208 208
 
209 209
 		//search without base criteria
Please login to merge, or discard this patch.
tests/MShop/Rule/Manager/StandardTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@
 block discarded – undo
170 170
 		$expr[] = $search->compare( '==', 'rule.status', 1 );
171 171
 		$expr[] = $search->compare( '>=', 'rule.mtime', '1970-01-01 00:00:00' );
172 172
 		$expr[] = $search->compare( '>=', 'rule.ctime', '1970-01-01 00:00:00' );
173
-		$expr[] = $search->compare( '==', 'rule.editor', $this->context->editor());
173
+		$expr[] = $search->compare( '==', 'rule.editor', $this->context->editor() );
174 174
 
175 175
 		$search->setConditions( $search->and( $expr ) );
176 176
 		$this->assertEquals( 1, $this->object->search( $search, [], $total )->count() );
Please login to merge, or discard this patch.