File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
driver/src/test/java/com/arangodb
resilience-tests/src/test/java/resilience/timeout Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -1571,7 +1571,7 @@ void createPersistentIndexWithOptions(ArangoCollectionAsync collection) throws E
1571
1571
@ MethodSource ("asyncCols" )
1572
1572
void createZKDIndex (ArangoCollectionAsync collection ) throws ExecutionException , InterruptedException {
1573
1573
assumeTrue (isAtLeastVersion (3 , 9 ));
1574
- collection .truncate ();
1574
+ collection .truncate (). get () ;
1575
1575
String f1 = "field-" + rnd ();
1576
1576
String f2 = "field-" + rnd ();
1577
1577
final Collection <String > fields = Arrays .asList (f1 , f2 );
Original file line number Diff line number Diff line change 12
12
13
13
import static org .assertj .core .api .Assertions .assertThat ;
14
14
import static org .assertj .core .api .Assertions .catchThrowable ;
15
- import static org .junit .jupiter .api .Assumptions .assumeTrue ;
16
15
17
16
/**
18
17
* @author Michele Rastelli
You can’t perform that action at this time.
0 commit comments