Merge branch '21718-memoryview-decode' refs #21718
[arvados.git] / sdk / cwl / tests / test_set_output_prop.py
index 3219eac989f5580658c20ae255fb38a179e720a0..0e829eeb92fe5ba2929101d498d1a83079172164 100644 (file)
@@ -7,7 +7,7 @@ import subprocess
 
 api = arvados.api()
 
-def test_execute():
+def check_execute():
     group = api.groups().create(body={"group": {"name": "test-17004-project", "group_class": "project"}}, ensure_unique_name=True).execute()
     try:
         contents = api.groups().contents(uuid=group["uuid"]).execute()
@@ -34,4 +34,4 @@ def test_execute():
         api.groups().delete(uuid=group["uuid"]).execute()
 
 if __name__ == '__main__':
-    test_execute()
+    check_execute()