X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2c640b0e791d9997ff87f4ec2b33af7781286af5..0c6cbd8a07e31decd703ef7fd9eca591e5661c32:/sdk/python/tests/test_arv_put.py diff --git a/sdk/python/tests/test_arv_put.py b/sdk/python/tests/test_arv_put.py index 47594ab952..7a0120c028 100644 --- a/sdk/python/tests/test_arv_put.py +++ b/sdk/python/tests/test_arv_put.py @@ -283,8 +283,8 @@ class ArvPutUploadJobTest(run_test_server.TestCaseWithServers, # Don't destroy the cache, and start another upload cwriter_new = arv_put.ArvPutUploadJob([f.name]) cwriter_new.start() - self.assertEqual(0, cwriter_new.bytes_written) cwriter_new.destroy_cache() + self.assertEqual(0, cwriter_new.bytes_written) def make_progress_tester(self): progression = [] @@ -434,9 +434,8 @@ class ArvadosPutTest(run_test_server.TestCaseWithServers, ArvadosBaseTestCase): os.chmod(cachedir, 0o700) def test_put_block_replication(self): - with mock.patch('arvados.collection.KeepClient.local_store_put') as put_mock, \ - mock.patch('arvados.commands.put.ResumeCache.load') as cache_mock: - cache_mock.side_effect = ValueError + self.call_main_on_test_file() + with mock.patch('arvados.collection.KeepClient.local_store_put') as put_mock: put_mock.return_value = 'acbd18db4cc2f85cedef654fccc4a4d8+3' self.call_main_on_test_file(['--replication', '1']) self.call_main_on_test_file(['--replication', '4'])