Skip to content

Commit

Permalink
Fix Network Interface Test (#605)
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 authored Oct 21, 2024
1 parent 4e13210 commit 5c4d1ad
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crt/aws-c-common
2 changes: 1 addition & 1 deletion crt/aws-lc
5 changes: 3 additions & 2 deletions test/test_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,9 @@ def test_sanity_secure(self):
self.assertIsNotNone(s3_client)

def test_sanity_network_interface_names(self):
s3_client = s3_client_new(True, self.region, network_interface_names=("eth0", "eth1"))
self.assertIsNotNone(s3_client)
# This is just a sanity test to ensure that we are passing the parameter correctly.
with self.assertRaises(Exception):
s3_client_new(True, self.region, network_interface_names=("eth0", "invalid-network-interface"))

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

0 comments on commit 5c4d1ad

Please sign in to comment.