Skip to content

Commit

Permalink
chore: fix test compilation issues after the prettyPrint refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
kmruiz committed Jan 22, 2025
1 parent cf58ae2 commit a4c6ae8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ class DataGripMongoDbDriverTest {

val explainPlanResult = driver.explain(
query,
QueryContext(emptyMap(), QueryContext.ExplainPlanType.SAFE)
QueryContext(emptyMap(), QueryContext.ExplainPlanType.SAFE, false)
)
assertEquals(ExplainPlan.CollectionScan, explainPlanResult)
}
Expand Down Expand Up @@ -324,7 +324,7 @@ class DataGripMongoDbDriverTest {

val explainPlanResult = driver.explain(
query,
QueryContext(emptyMap(), QueryContext.ExplainPlanType.SAFE)
QueryContext(emptyMap(), QueryContext.ExplainPlanType.SAFE, false)
)
assertEquals(ExplainPlan.IndexScan, explainPlanResult)
}
Expand Down

0 comments on commit a4c6ae8

Please sign in to comment.