File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/java/com/arangodb/async Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ void updateSearchAliasViewWithIndexesAndGetProperties() throws ExecutionExceptio
302302 .indexes (new SearchAliasIndex (COLL_1 , idxName ));
303303 final ViewEntity info = db .searchAlias (viewName ).create (options ).get ();
304304 db .searchAlias (viewName ).updateProperties (new SearchAliasPropertiesOptions ()
305- .indexes (new SearchAliasIndex (COLL_2 , idxName2 )));
305+ .indexes (new SearchAliasIndex (COLL_2 , idxName2 ))). get () ;
306306
307307 assertThat (info ).isNotNull ();
308308 assertThat (info .getId ()).isNotNull ();
@@ -361,7 +361,7 @@ void replaceSearchAliasViewWithIndexesAndGetProperties() throws ExecutionExcepti
361361 .indexes (new SearchAliasIndex (COLL_1 , idxName ));
362362 final ViewEntity info = db .searchAlias (viewName ).create (options ).get ();
363363 db .searchAlias (viewName ).replaceProperties (new SearchAliasPropertiesOptions ()
364- .indexes (new SearchAliasIndex (COLL_2 , idxName2 )));
364+ .indexes (new SearchAliasIndex (COLL_2 , idxName2 ))). get () ;
365365
366366 assertThat (info ).isNotNull ();
367367 assertThat (info .getId ()).isNotNull ();
You can’t perform that action at this time.
0 commit comments