summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gitlab/tests/test_gitlab.py6
-rw-r--r--gitlab/tests/test_gitlabobject.py2
2 files changed, 4 insertions, 4 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",
diff --git a/gitlab/tests/test_gitlabobject.py b/gitlab/tests/test_gitlabobject.py
index 812e6c6..99a184b 100644
--- a/gitlab/tests/test_gitlabobject.py
+++ b/gitlab/tests/test_gitlabobject.py
@@ -143,7 +143,7 @@ def resp_protect_branch_fail(url, request):
return response(400, content, headers, None, 5, request)
-class TestGitLabObject(unittest.TestCase):
+class TestGitlabObject(unittest.TestCase):
def setUp(self):
self.gl = Gitlab("http://localhost", private_token="private_token",