ALBS-334: Make the ability of Pungi to give module_defaults from remote sources

This commit is contained in:
soksanichenko 2022-05-01 03:41:40 +03:00
parent 1e18e8995d
commit 5f74175c33
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class TestPackagesJson(TestCase):
file_name = PackagesGenerator.get_remote_file_content( file_name = PackagesGenerator.get_remote_file_content(
file_url='fakeurl') file_url='fakeurl')
mock_requests_get.assert_called_once_with(url='fakeurl') mock_requests_get.assert_called_once_with(url='fakeurl')
mock_tempfile.assert_called_once_with(delete=False) mock_tempfile.assert_called_once_with(delete=True)
mock_tempfile.return_value.__enter__().\ mock_tempfile.return_value.__enter__().\
write.assert_called_once_with(b'TestContent') write.assert_called_once_with(b'TestContent')
self.assertEqual( self.assertEqual(