We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49033a7 commit 70f5f2cCopy full SHA for 70f5f2c
tests/Parse/ParseQueryTest.php
@@ -2726,7 +2726,9 @@ public function testCountDoesNotOverrideConditions()
2726
2727
$this->assertSame([
2728
'where' => [
2729
- 'country' => 'US'
+ 'country' => [
2730
+ '$eq' => 'US'
2731
+ ]
2732
],
2733
'limit' => 1,
2734
], $query->_getOptions());
@@ -2807,8 +2809,6 @@ public function testEqualToWithSameKeyDoesNotOverrideOtherConditions()
2807
2809
'$eq' => 'bar',
2808
2810
]
2811
- 'limit' => 0,
- 'count' => 1,
2812
2813
}
2814
0 commit comments