diff options
-rw-r--r-- | gitlab/tests/test_gitlabobject.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/tests/test_gitlabobject.py b/gitlab/tests/test_gitlabobject.py index aea80ca..ca0149f 100644 --- a/gitlab/tests/test_gitlabobject.py +++ b/gitlab/tests/test_gitlabobject.py @@ -486,9 +486,9 @@ class TestProjectSnippet(unittest.TestCase): def test_content(self): with HTTMock(self.resp_content): data = b'content' - content = self.obj.Content() + content = self.obj.content() self.assertEqual(content, data) def test_blob_fail(self): with HTTMock(self.resp_content_fail): - self.assertRaises(GitlabGetError, self.obj.Content) + self.assertRaises(GitlabGetError, self.obj.content) |