diff options
author | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2016-01-03 11:59:08 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2016-01-03 11:59:08 +0100 |
commit | fdf295f99f4e7f68e360280f103a164f447adf15 (patch) | |
tree | 5f0ed5bae2bf8246c5b0120c678f64e071527493 /gitlab/tests/test_gitlab.py | |
parent | bef97fe3a06802971d67fb70c5215f200cf31147 (diff) | |
download | gitlab-fdf295f99f4e7f68e360280f103a164f447adf15.tar.gz |
GitLab -> Gitlab (class names)
Diffstat (limited to 'gitlab/tests/test_gitlab.py')
-rw-r--r-- | gitlab/tests/test_gitlab.py | 6 |
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", |