Skip to content

Commit 3a4acf2

Browse files
authored
fix throttling test
1 parent afee500 commit 3a4acf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def test_is_throttled(self):
4141
e = CustomException(response={"Error": {"Code": t}})
4242
assert is_throttled(e)
4343
# test the non-throttling exception
44-
e = CustomException(response={"Error": {"Code": "Not Throttling"}})
44+
e = CustomException(response={"Error": {"Code": "Not Thro_ttling"}})
4545
assert not is_throttled(e)
4646
# test the except block
4747
e = CustomException(response={"Error": ""})

0 commit comments

Comments
 (0)