diff options
author | John L. Villalovos <debian.org@sodarock.com> | 2021-02-15 14:50:52 -0800 |
---|---|---|
committer | John L. Villalovos <debian.org@sodarock.com> | 2021-02-18 10:49:24 -0800 |
commit | 53a764530cc3c6411034a3798f794545881d341e (patch) | |
tree | 47800a838daba22be77b429013c635902b459ab7 /gitlab/tests | |
parent | d4e7a031eb64ecba09f2547bd7803f2cceb7558b (diff) | |
download | gitlab-53a764530cc3c6411034a3798f794545881d341e.tar.gz |
refactor: move Gitlab and GitlabList to gitlab/client.py
Move the classes Gitlab and GitlabList from gitlab/__init__.py to the
newly created gitlab/client.py file.
Update one test case that was depending on requests being defined in
gitlab/__init__.py
Diffstat (limited to 'gitlab/tests')
-rw-r--r-- | gitlab/tests/test_gitlab_http_methods.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitlab/tests/test_gitlab_http_methods.py b/gitlab/tests/test_gitlab_http_methods.py index fac89b9..253ad16 100644 --- a/gitlab/tests/test_gitlab_http_methods.py +++ b/gitlab/tests/test_gitlab_http_methods.py @@ -1,4 +1,5 @@ import pytest +import requests from httmock import HTTMock, urlmatch, response |