Skip to content

Commit

Permalink
chore: fix missing test
Browse files Browse the repository at this point in the history
  • Loading branch information
kmruiz committed Jan 20, 2025
1 parent e8e4572 commit f7bbf5a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,10 @@ class DataGripMongoDbDriverTest {
Unit::class,
)

val explainPlanResult = driver.explain(query, QueryContext.empty())
val explainPlanResult = driver.explain(
query,
QueryContext(emptyMap(), QueryContext.ExplainPlanType.SAFE)
)
assertEquals(ExplainPlan.CollectionScan, explainPlanResult)
}

Expand Down

0 comments on commit f7bbf5a

Please sign in to comment.