Skip to content

Commit

Permalink
resolved comments
Browse files Browse the repository at this point in the history
  • Loading branch information
singh-viikram committed Oct 18, 2024
1 parent 54983c2 commit 6e0d7b3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1287,7 +1287,7 @@ public void testQueryV1AggregationWithInFilterWithPrimitiveLhs(final String data
}

@ParameterizedTest
@ArgumentsSource(AllProvider.class)
@ArgumentsSource(MongoProvider.class)
public void testQueryV1AggregationWithInFilterWithArrayLhs(final String dataStoreName)
throws IOException {
final Collection collection = getCollection(dataStoreName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
"quantity": 2,
"date": "2014-03-01T08:00:00Z",
"props": {
"colors": ["Blue", "Green"],
"colors": [
"Blue",
"Green"
],
"brand": "Dettol",
"size": "M",
"seller": {
Expand Down Expand Up @@ -70,7 +73,9 @@
"quantity": 10,
"date": "2014-03-15T09:00:00Z",
"props": {
"colors": ["Black"],
"colors": [
"Black"
],
"brand": "Sunsilk",
"size": "L",
"seller": {
Expand Down Expand Up @@ -133,7 +138,10 @@
"quantity": 5,
"date": "2014-04-04T21:23:13.331Z",
"props": {
"colors": ["Orange", "Blue"],
"colors": [
"Orange",
"Blue"
],
"brand": "Lifebuoy",
"size": "S",
"seller": {
Expand Down Expand Up @@ -176,4 +184,4 @@
"quantity": 5,
"date": "2016-02-06T20:20:13Z"
}
]
]

0 comments on commit 6e0d7b3

Please sign in to comment.