Skip to content

Commit

Permalink
assert IsNone
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Oct 18, 2024
1 parent cedc2f4 commit eb185da
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/test_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,10 @@ def test_sanity_secure(self):
s3_client = s3_client_new(True, self.region)
self.assertIsNotNone(s3_client)

def test_sanity_network_interface_names(self):
s3_client = s3_client_new(True, self.region, network_interface_names=("eth0", "invalid-network-interface"))
self.assertIsNone(s3_client)

def test_wait_shutdown(self):
s3_client = s3_client_new(False, self.region)
self.assertIsNotNone(s3_client)
Expand Down

0 comments on commit eb185da

Please sign in to comment.