3504: CollectionReader accepts arvados object collection uuids. 'arv-put' sets
[arvados.git] / sdk / python / tests / test_arv_put.py
index 5c84c48c25111128aa669aba784b9aac8fc01588..697ca0cb4afaf043d0ddbf09f40976270d5f093b 100644 (file)
@@ -578,7 +578,7 @@ class ArvPutIntegrationTest(unittest.TestCase):
 
     def test_put_collection_with_unnamed_project_link(self):
         link = self.run_and_find_collection("Test unnamed collection",
-                                      ['--project-uuid', self.PROJECT_UUID])
+                                            ['--project-uuid', self.PROJECT_UUID])
         username = pwd.getpwuid(os.getuid()).pw_name
         self.assertRegexpMatches(
             link['name'],
@@ -587,7 +587,7 @@ class ArvPutIntegrationTest(unittest.TestCase):
     def test_put_collection_with_name_and_no_project(self):
         link_name = 'Test Collection Link in home project'
         collection = self.run_and_find_collection("Test named collection in home project",
-                                      ['--name', link_name])
+                                                  ['--name', link_name])
         self.assertEqual(link_name, collection['name'])
         my_user_uuid = self.current_user()['uuid']
         self.assertEqual(my_user_uuid, collection['owner_uuid'])
@@ -595,8 +595,8 @@ class ArvPutIntegrationTest(unittest.TestCase):
     def test_put_collection_with_named_project_link(self):
         link_name = 'Test auto Collection Link'
         collection = self.run_and_find_collection("Test named collection",
-                                      ['--name', link_name,
-                                       '--project-uuid', self.PROJECT_UUID])
+                                                  ['--name', link_name,
+                                                   '--project-uuid', self.PROJECT_UUID])
         self.assertEqual(link_name, collection['name'])