@@ -242,7 +242,7 @@ async def test_batch_update(
242242 .where (Asset .TYPE_NAME .eq (View .__name__ ))
243243 .where (Asset .QUALIFIED_NAME .eq (view .qualified_name ))
244244 .include_on_results (Asset .USER_DESCRIPTION )
245- .aexecute (client = client )
245+ .execute_async (client = client )
246246 )
247247 assert results and results .count == 1
248248 assert results .current_page () and len (results .current_page ()) == 1
@@ -280,7 +280,7 @@ async def test_batch_update(
280280 .where (Asset .TYPE_NAME .eq (MaterialisedView .__name__ ))
281281 .where (Asset .QUALIFIED_NAME .eq (mview .qualified_name ))
282282 .include_on_results (Asset .USER_DESCRIPTION )
283- .aexecute (client = client )
283+ .execute_async (client = client )
284284 )
285285 assert results and results .count == 1
286286 assert results .current_page () and len (results .current_page ()) == 1
@@ -339,7 +339,7 @@ async def test_batch_update(
339339 .where (Asset .TYPE_NAME .eq (Table .__name__ ))
340340 .where (Asset .QUALIFIED_NAME .eq (view .qualified_name ))
341341 .include_on_results (Asset .USER_DESCRIPTION )
342- .aexecute (client = client )
342+ .execute_async (client = client )
343343 )
344344
345345 assert results and results .count == 1
@@ -394,7 +394,7 @@ async def test_batch_update(
394394 .where (Asset .TYPE_NAME .eq (Table .__name__ ))
395395 .where (Asset .QUALIFIED_NAME .eq (table1 .qualified_name ))
396396 .include_on_results (Asset .USER_DESCRIPTION )
397- .aexecute (client = client )
397+ .execute_async (client = client )
398398 )
399399
400400 assert results and results .count == 1
@@ -436,7 +436,7 @@ async def test_batch_update(
436436 .where (Asset .TYPE_NAME .eq (Table .__name__ ))
437437 .where (Asset .QUALIFIED_NAME .eq (table1 .qualified_name ))
438438 .include_on_results (Asset .USER_DESCRIPTION )
439- .aexecute (client = client )
439+ .execute_async (client = client )
440440 )
441441
442442 assert results and results .count == 1
@@ -506,7 +506,7 @@ async def test_batch_update(
506506 .where (Asset .QUALIFIED_NAME .eq (table .qualified_name ))
507507 .include_on_results (Asset .IS_PARTIAL )
508508 .include_on_results (Asset .USER_DESCRIPTION )
509- .aexecute (client = client )
509+ .execute_async (client = client )
510510 )
511511
512512 assert results and results .count == 1
0 commit comments