Skip to content

Commit

Permalink
changed error returned and updated requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Jarry committed Jun 19, 2024
1 parent 6eb166b commit e405fff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ vcrpy
contextlib2
mock
astroid==2.5.6
requests==2.32.0
requests==2.32.3
2 changes: 1 addition & 1 deletion src/sfctl/tests/app_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def test_upload_image_store_timeout_overall(self): #pylint: disable=invalid-nam
try:
timeout = 2
sf_c.upload(path_to_upload_file, timeout=timeout)
except SFCTLInternalException as ex:
except Exception as ex:
self.assertIn(
'Upload has timed out. Consider passing a longer timeout duration.',
ex.message,
Expand Down

0 comments on commit e405fff

Please sign in to comment.