diff options
| author | Ihar Nauros <53901248+frehty@users.noreply.github.com> | 2020-04-22 11:11:02 +0300 |
|---|---|---|
| committer | Asif Saif Uddin <auvipy@gmail.com> | 2020-04-22 14:48:02 +0600 |
| commit | 4dadaad6e736cc0ca1974aba68d07053b0e6ccea (patch) | |
| tree | c16e459eeef4f549cf4ac199d50329347f56d511 /t/unit | |
| parent | 209c777b458ff440e19d50e90e06c6d5ff69c5fa (diff) | |
| download | kombu-4dadaad6e736cc0ca1974aba68d07053b0e6ccea.tar.gz | |
Unit test for the fix relating to the issue #1172
Diffstat (limited to 't/unit')
| -rw-r--r-- | t/unit/asynchronous/aws/test_connection.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/t/unit/asynchronous/aws/test_connection.py b/t/unit/asynchronous/aws/test_connection.py index 14833d4a..79966a85 100644 --- a/t/unit/asynchronous/aws/test_connection.py +++ b/t/unit/asynchronous/aws/test_connection.py @@ -252,7 +252,9 @@ class test_AsyncAWSQueryConnection(AWSCase): AsyncAWSQueryConnection.STATUS_CODE_REQUEST_TIMEOUT, AsyncAWSQueryConnection.STATUS_CODE_NETWORK_CONNECT_TIMEOUT_ERROR, AsyncAWSQueryConnection.STATUS_CODE_INTERNAL_ERROR, - AsyncAWSQueryConnection.STATUS_CODE_SERVICE_UNAVAILABLE_ERROR + AsyncAWSQueryConnection.STATUS_CODE_BAD_GATEWAY, + AsyncAWSQueryConnection.STATUS_CODE_SERVICE_UNAVAILABLE_ERROR, + AsyncAWSQueryConnection.STATUS_CODE_GATEWAY_TIMEOUT ]) def test_on_list_ready_error_response(self, error_status_code): mocked_response_error = self.Response( |
