Skip to content

Commit 82a5a5e

Browse files
eulogio-gutierrezdanPudwellUK
authored andcommitted
fixed prospector issues
1 parent 2cc0d2f commit 82a5a5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_decorators.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ def handler():
648648

649649
response = handler()
650650

651-
self.assertEqual(response['statusCode'], 500)
652-
self.assertEqual(response['body'], "Invalid response type for CORS headers")
651+
self.assertEqual(response['statusCode'], 500) # noqa: pylint-invalid-sequence-index
652+
self.assertEqual(response['body'], "Invalid response type for CORS headers") # noqa: pylint-invalid-sequence-index
653653

654654
mock_logger.error.assert_called_once_with("Cannot add headers to a non dictionary response")

0 commit comments

Comments
 (0)