Skip to content

Commit

Permalink
Fix: Change $eq to _eq in the failing test. (#576)
Browse files Browse the repository at this point in the history
Fix the broken test.
  • Loading branch information
shahzadlone authored Jun 30, 2022
1 parent e8b86b1 commit bab8bd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/query/explain/with_sum_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ func TestExplainQuerySumOfRelatedOneToManyFieldWithFilter(t *testing.T) {
"childFieldName": "pages",
"filter": dataMap{
"name": dataMap{
"$eq": "To my dear readers",
"_eq": "To my dear readers",
},
},
},
Expand Down Expand Up @@ -231,7 +231,7 @@ func TestExplainQuerySumOfRelatedOneToManyFieldWithFilter(t *testing.T) {
"collectionName": "article",
"filter": dataMap{
"name": dataMap{
"$eq": "To my dear readers",
"_eq": "To my dear readers",
},
},
"spans": []dataMap{
Expand Down

0 comments on commit bab8bd3

Please sign in to comment.