diff options
author | Max Wittig <max.wittig@siemens.com> | 2019-01-13 12:01:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-13 12:01:07 +0100 |
commit | 89679ce5ee502e57dbe7cec2b78f4f70b85fd3a5 (patch) | |
tree | bb14b5569d330e84b6b21cf3fdca9cc2fe7a2e36 /tools/python_test_v4.py | |
parent | ce2c8356cdd0e086ec67a1bf73adc2d0ea251971 (diff) | |
parent | 16bda20514e036e51bef210b565671174cdeb637 (diff) | |
download | gitlab-89679ce5ee502e57dbe7cec2b78f4f70b85fd3a5.tar.gz |
Merge pull request #678 from appian/backoff-requests
Fix missing "Retry-After" header and fix integration tests
Diffstat (limited to 'tools/python_test_v4.py')
-rw-r--r-- | tools/python_test_v4.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/python_test_v4.py b/tools/python_test_v4.py index 30e4456..aacb3e7 100644 --- a/tools/python_test_v4.py +++ b/tools/python_test_v4.py @@ -798,7 +798,7 @@ for i in range(20, 40): except gitlab.GitlabCreateError as e: error_message = e.error_message break -assert 'Retry later' in error_message.decode() +assert 'Retry later' in error_message [current_project.delete() for current_project in projects] settings.throttle_authenticated_api_enabled = False settings.save() |