summaryrefslogtreecommitdiff
path: root/gitlab/tests/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/tests/conftest.py')
-rw-r--r--gitlab/tests/conftest.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/gitlab/tests/conftest.py b/gitlab/tests/conftest.py
index 2d4cb3a..98d97ae 100644
--- a/gitlab/tests/conftest.py
+++ b/gitlab/tests/conftest.py
@@ -16,9 +16,7 @@ def gl():
@pytest.fixture
def gl_trailing():
return gitlab.Gitlab(
- "http://localhost/",
- private_token="private_token",
- api_version=4
+ "http://localhost/", private_token="private_token", api_version=4
)
@@ -38,6 +36,7 @@ def default_config(tmpdir):
config_path.write(valid_config)
return str(config_path)
+
@pytest.fixture
def group(gl):
return gl.groups.get(1, lazy=True)