File tree Expand file tree Collapse file tree
tests/integration/synapseclient/operations/async Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -511,7 +511,7 @@ async def test_delete_docker_repo_by_id_string_async(
511511
512512 # THEN the repository should be deleted
513513 with pytest .raises (SynapseHTTPError ) as e :
514- await DockerRepository (id = docker_repo .id ).get (synapse_client = self .syn )
514+ await DockerRepository (id = docker_repo .id ).get_async (synapse_client = self .syn )
515515 assert f"404 Client Error: Entity { docker_repo .id } is in trash can" in str (
516516 e .value
517517 )
@@ -535,7 +535,7 @@ async def test_delete_docker_repo_by_objec_async(
535535
536536 # THEN the repository should be deleted
537537 with pytest .raises (SynapseHTTPError ) as e :
538- await DockerRepository (id = docker_repo .id ).get (synapse_client = syn )
538+ await DockerRepository (id = docker_repo .id ).get_async (synapse_client = syn )
539539 assert f"404 Client Error: Entity { docker_repo .id } is in trash can" in str (
540540 e .value
541541 )
You can’t perform that action at this time.
0 commit comments