Correct flush parameters in engine test

Since #40213, we forbid a combination of flush parameters: force=true
and wait_if_ongoing=false.

Closes #41236
This commit is contained in:
Nhat Nguyen 2019-04-16 04:13:47 -04:00
parent f8161ffa88
commit 8ee84f2268
1 changed files with 1 additions and 1 deletions

View File

@ -3104,7 +3104,7 @@ public class InternalEngineTests extends EngineTestCase {
break; break;
} }
case "flush": { case "flush": {
engine.flush(true, false); engine.flush(true, true);
break; break;
} }
} }