X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7653054635e3f4f84da3f2b6862cd2c02fbe3fd4..ae92d144610446849eb568247a44f02ae985c281:/services/fuse/tests/performance/test_collection_performance.py diff --git a/services/fuse/tests/performance/test_collection_performance.py b/services/fuse/tests/performance/test_collection_performance.py index 475e0e75e4..98bc98abd4 100644 --- a/services/fuse/tests/performance/test_collection_performance.py +++ b/services/fuse/tests/performance/test_collection_performance.py @@ -472,10 +472,9 @@ class FuseListLargeProjectContents(MountTestBase): project_contents = llfuse.listdir(self.mounttmp) self.assertEqual(201, len(project_contents)) self.assertIn('Collection_1', project_contents) - return project_contents @profiled - def listContentsInProjectWithManyCollections(self, project_contents): + def listContentsInProjectWithManyCollections(self): project_contents = llfuse.listdir(self.mounttmp) self.assertEqual(201, len(project_contents)) self.assertIn('Collection_1', project_contents) @@ -488,5 +487,5 @@ class FuseListLargeProjectContents(MountTestBase): def test_listLargeProjectContents(self): self.make_mount(fuse.ProjectDirectory, project_object=run_test_server.fixture('groups')['project_with_201_collections']) - project_contents = self.getProjectWithManyCollections() - self.listContentsInProjectWithManyCollections(project_contents) + self.getProjectWithManyCollections() + self.listContentsInProjectWithManyCollections()