Skip to content

Commit

Permalink
Fix Azure unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rzvoncek committed Jun 13, 2024
1 parent 0c0c72b commit 998d9da
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/storage/azure_storage_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ def test_make_connection_url(self):
'concurrent_transfers': '1',
'host': None,
'port': None,
'read_timeout': 60,
})
azure_storage = AzureStorage(config)
self.assertEqual(
Expand All @@ -52,6 +53,7 @@ def test_make_connection_url_with_custom_host(self):
'concurrent_transfers': '1',
'host': 'custom.host.net',
'port': None,
'read_timeout': 60,
})
azure_storage = AzureStorage(config)
self.assertEqual(
Expand All @@ -71,6 +73,7 @@ def test_make_connection_url_with_custom_host_port(self):
'concurrent_transfers': '1',
'host': 'custom.host.net',
'port': 123,
'read_timeout': 60,
})
azure_storage = AzureStorage(config)
self.assertEqual(
Expand Down

0 comments on commit 998d9da

Please # to comment.