We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 062c4bc commit 49e786bCopy full SHA for 49e786b
tests/acquisition/covidcast/test_covidcast_meta_cache_updater.py
@@ -34,7 +34,7 @@ def test_main_successful(self):
34
'epidata': [{'foo': 'bar'}],
35
}
36
37
- args = None
+ args = MagicMock(log_file="log")
38
mock_epidata_impl = MagicMock()
39
mock_epidata_impl.covidcast_meta.return_value = api_response
40
mock_database = MagicMock()
@@ -64,7 +64,7 @@ def test_main_failure(self):
64
'message': 'no',
65
66
67
68
69
mock_database.get_covidcast_meta.return_value = list()
70
fake_database_impl = lambda: mock_database
0 commit comments