X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5dbf5c8ea2d9eb2bc8e10a03ca625f12ed71f12c..3598c3003a7987cca5c0536ba8206ec40c1c3649:/sdk/python/tests/test_collections.py diff --git a/sdk/python/tests/test_collections.py b/sdk/python/tests/test_collections.py index 4ca8dfef9e..dbbe3f5e73 100644 --- a/sdk/python/tests/test_collections.py +++ b/sdk/python/tests/test_collections.py @@ -720,10 +720,10 @@ class CollectionWriterTestCase(unittest.TestCase, CollectionTestMixin): self.mock_keep_services(client, status=200, service_type='disk', count=6) writer = self.foo_writer(api_client=client, replication=3) with self.mock_keep( - None, 200, 500, 200, 500, 200, 200, + None, 500, 500, 500, 200, 200, 200, **{'x-keep-replicas-stored': 1}) as keepmock: writer.manifest_text() - self.assertEqual(5, keepmock.call_count) + self.assertEqual(6, keepmock.call_count) def test_write_whole_collection_through_retries(self): writer = self.foo_writer(num_retries=2)