Skip to content

Commit fdf295f

Browse files
author
Gauvain Pocentek
committed
GitLab -> Gitlab (class names)
1 parent bef97fe commit fdf295f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gitlab/tests/test_gitlab.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from gitlab import * # noqa
3131

3232

33-
class TestGitLabRawMethods(unittest.TestCase):
33+
class TestGitlabRawMethods(unittest.TestCase):
3434
def setUp(self):
3535
self.gl = Gitlab("http://localhost", private_token="private_token",
3636
email="testuser@test.com", password="testpassword",
@@ -154,7 +154,7 @@ def resp_cont(url, request):
154154
self.assertEqual(resp.status_code, 404)
155155

156156

157-
class TestGitLabMethods(unittest.TestCase):
157+
class TestGitlabMethods(unittest.TestCase):
158158
def setUp(self):
159159
self.gl = Gitlab("http://localhost", private_token="private_token",
160160
email="testuser@test.com", password="testpassword",
@@ -503,7 +503,7 @@ def resp_cont(url, request):
503503
self.assertRaises(GitlabUpdateError, self.gl.update, obj)
504504

505505

506-
class TestGitLab(unittest.TestCase):
506+
class TestGitlab(unittest.TestCase):
507507

508508
def setUp(self):
509509
self.gl = Gitlab("http://localhost", private_token="private_token",

gitlab/tests/test_gitlabobject.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def resp_protect_branch_fail(url, request):
143143
return response(400, content, headers, None, 5, request)
144144

145145

146-
class TestGitLabObject(unittest.TestCase):
146+
class TestGitlabObject(unittest.TestCase):
147147

148148
def setUp(self):
149149
self.gl = Gitlab("http://localhost", private_token="private_token",

0 commit comments

Comments
 (0)