Skip to content

Commit be57b9f

Browse files
committed
test fix: getIndexesShouldNotReturnInvertedIndexes()
1 parent 6eeff5c commit be57b9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver/src/test/java/com/arangodb/async/InvertedIndexTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ void getIndexesShouldNotReturnInvertedIndexes() throws ExecutionException, Inter
182182
ArangoCollectionAsync collection = db.collection(COLLECTION_NAME);
183183

184184
// create persistent index
185-
collection.ensurePersistentIndex(Collections.singletonList("foo"), new PersistentIndexOptions().name("persistentIndex"));
185+
collection.ensurePersistentIndex(Collections.singletonList("foo"), new PersistentIndexOptions().name("persistentIndex")).get();
186186

187187
// create inverted index
188188
String analyzerName = "delimiter-" + UUID.randomUUID();

0 commit comments

Comments
 (0)