X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/aece35d20c892aa7b3df29b15ac0a8a167b0b3ab..f11933fe893204fc0378d83b25167eb14ba4a265:/sdk/cwl/tests/test_copy_deps.py diff --git a/sdk/cwl/tests/test_copy_deps.py b/sdk/cwl/tests/test_copy_deps.py index 28a5915b11..8ad735fddc 100644 --- a/sdk/cwl/tests/test_copy_deps.py +++ b/sdk/cwl/tests/test_copy_deps.py @@ -73,7 +73,7 @@ def check_contents(group, wf_uuid): raise Exception("Couldn't find collection containing expected "+expect_file) -def test_create(): +def check_create(): group = api.groups().create(body={"group": {"name": "test-19070-project-1", "group_class": "project"}}, ensure_unique_name=True).execute() try: contents = api.groups().contents(uuid=group["uuid"]).execute() @@ -90,7 +90,7 @@ def test_create(): api.groups().delete(uuid=group["uuid"]).execute() -def test_update(): +def check_update(): group = api.groups().create(body={"group": {"name": "test-19070-project-2", "group_class": "project"}}, ensure_unique_name=True).execute() try: contents = api.groups().contents(uuid=group["uuid"]).execute() @@ -132,7 +132,7 @@ def test_update(): api.groups().delete(uuid=group["uuid"]).execute() -def test_execute(): +def check_execute(): group = api.groups().create(body={"group": {"name": "test-19070-project-3", "group_class": "project"}}, ensure_unique_name=True).execute() try: contents = api.groups().contents(uuid=group["uuid"]).execute() @@ -193,6 +193,6 @@ def test_execute(): api.groups().delete(uuid=group["uuid"]).execute() if __name__ == '__main__': - test_create() - test_update() - test_execute() + check_create() + check_update() + check_execute()