Skip to content

Commit 70f5f2c

Browse files
committed
fix tests
1 parent 49033a7 commit 70f5f2c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Parse/ParseQueryTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -2726,7 +2726,9 @@ public function testCountDoesNotOverrideConditions()
27262726

27272727
$this->assertSame([
27282728
'where' => [
2729-
'country' => 'US'
2729+
'country' => [
2730+
'$eq' => 'US'
2731+
]
27302732
],
27312733
'limit' => 1,
27322734
], $query->_getOptions());
@@ -2807,8 +2809,6 @@ public function testEqualToWithSameKeyDoesNotOverrideOtherConditions()
28072809
'$eq' => 'bar',
28082810
]
28092811
],
2810-
'limit' => 0,
2811-
'count' => 1,
28122812
], $query->_getOptions());
28132813
}
28142814
}

0 commit comments

Comments
 (0)