summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLiora Milbaum <liora@lmb.co.il>2022-12-06 06:15:22 +0200
committerNejc Habjan <hab.nejc@gmail.com>2022-12-06 09:53:48 +0100
commit887852d7ef02bed6dff5204ace73d8e43a66e32f (patch)
tree5f7afba429358d68c992fa793b9ee79bd20881bf /tests
parent985b971cf6d69692379805622a1bb1ff29ae308d (diff)
downloadgitlab-887852d7ef02bed6dff5204ace73d8e43a66e32f.tar.gz
refactor: Moving RETRYABLE_TRANSIENT_ERROR_CODES to const
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_gitlab_http_methods.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_gitlab_http_methods.py b/tests/unit/test_gitlab_http_methods.py
index 252ecb6..d4abe0b 100644
--- a/tests/unit/test_gitlab_http_methods.py
+++ b/tests/unit/test_gitlab_http_methods.py
@@ -6,7 +6,7 @@ import requests
import responses
from gitlab import GitlabHttpError, GitlabList, GitlabParsingError, RedirectError
-from gitlab.client import RETRYABLE_TRANSIENT_ERROR_CODES
+from gitlab.const import RETRYABLE_TRANSIENT_ERROR_CODES
from tests.unit import helpers