summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain.pocentek@objectif-libre.com>2016-01-03 11:59:08 +0100
committerGauvain Pocentek <gauvain.pocentek@objectif-libre.com>2016-01-03 11:59:08 +0100
commitfdf295f99f4e7f68e360280f103a164f447adf15 (patch)
tree5f0ed5bae2bf8246c5b0120c678f64e071527493
parentbef97fe3a06802971d67fb70c5215f200cf31147 (diff)
downloadgitlab-fdf295f99f4e7f68e360280f103a164f447adf15.tar.gz
GitLab -> Gitlab (class names)
-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",