We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a07ad7 commit a62409fCopy full SHA for a62409f
src/test/java/com/arangodb/ArangoDatabaseTest.java
@@ -513,8 +513,8 @@ public void explainQuery() {
513
assertThat(plan.getCollections().size(), is(1));
514
assertThat(plan.getCollections().iterator().next().getName(), is("_apps"));
515
assertThat(plan.getCollections().iterator().next().getType(), is("read"));
516
- assertThat(plan.getEstimatedCost(), is(5));
517
- assertThat(plan.getEstimatedNrItems(), is(2));
+ assertThat(plan.getEstimatedCost(), greaterThan(0));
+ assertThat(plan.getEstimatedNrItems(), greaterThan(0));
518
assertThat(plan.getVariables().size(), is(1));
519
assertThat(plan.getVariables().iterator().next().getName(), is("i"));
520
assertThat(plan.getNodes().size(), is(3));
0 commit comments