diff options
Diffstat (limited to 'gitlab/tests/test_gitlab_http_methods.py')
| -rw-r--r-- | gitlab/tests/test_gitlab_http_methods.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/tests/test_gitlab_http_methods.py b/gitlab/tests/test_gitlab_http_methods.py index 253ad16..020fabf 100644 --- a/gitlab/tests/test_gitlab_http_methods.py +++ b/gitlab/tests/test_gitlab_http_methods.py @@ -3,7 +3,7 @@ import requests from httmock import HTTMock, urlmatch, response -from gitlab import * +from gitlab import GitlabHttpError, GitlabList, GitlabParsingError def test_build_url(gl): @@ -219,7 +219,7 @@ def test_delete_request(gl): with HTTMock(resp_cont): result = gl.http_delete("/projects") assert isinstance(result, requests.Response) - assert result.json() == True + assert result.json() is True def test_delete_request_404(gl): |
