From b3bc7ad9cf5daaa898a8c6c72752bfe550d47f5a Mon Sep 17 00:00:00 2001 From: Sergio Date: Mon, 9 Dec 2024 17:25:46 +0100 Subject: [PATCH] Fix tests --- tests/test_sync.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_sync.py b/tests/test_sync.py index 76103742..1575d006 100644 --- a/tests/test_sync.py +++ b/tests/test_sync.py @@ -107,7 +107,6 @@ def test_http_remote(self, mock_get, mock_error, mock_debug): syncer.fetch_symlinks(GOOD_SPEC) syncer.fetch_tarball(GOOD_SPEC) mock_error.assert_not_called() - syncer.upload_symlinks_and_tarball(GOOD_SPEC) # Try bad spec mock_error.reset_mock() @@ -128,8 +127,6 @@ def test_http_remote(self, mock_get, mock_error, mock_debug): self.assertIsInstance(mock_error.call_args_list[0][0][2], sync.PartialDownloadError) - syncer.upload_symlinks_and_tarball(BAD_SPEC) - # Try missing spec mock_debug.reset_mock() syncer.fetch_symlinks(MISSING_SPEC)