summaryrefslogtreecommitdiff
path: root/gitlab/tests/test_gitlab.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/tests/test_gitlab.py')
-rw-r--r--gitlab/tests/test_gitlab.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gitlab/tests/test_gitlab.py b/gitlab/tests/test_gitlab.py
index 8331964..0fe73e1 100644
--- a/gitlab/tests/test_gitlab.py
+++ b/gitlab/tests/test_gitlab.py
@@ -30,7 +30,7 @@ from httmock import urlmatch # noqa
from gitlab import * # noqa
-class TestGitLabRawMethods(unittest.TestCase):
+class TestGitlabRawMethods(unittest.TestCase):
def setUp(self):
self.gl = Gitlab("http://localhost", private_token="private_token",
email="testuser@test.com", password="testpassword",
@@ -154,7 +154,7 @@ class TestGitLabRawMethods(unittest.TestCase):
self.assertEqual(resp.status_code, 404)
-class TestGitLabMethods(unittest.TestCase):
+class TestGitlabMethods(unittest.TestCase):
def setUp(self):
self.gl = Gitlab("http://localhost", private_token="private_token",
email="testuser@test.com", password="testpassword",
@@ -503,7 +503,7 @@ class TestGitLabMethods(unittest.TestCase):
self.assertRaises(GitlabUpdateError, self.gl.update, obj)
-class TestGitLab(unittest.TestCase):
+class TestGitlab(unittest.TestCase):
def setUp(self):
self.gl = Gitlab("http://localhost", private_token="private_token",