summaryrefslogtreecommitdiff
path: root/gitlab/tests
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2016-07-17 16:57:11 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2016-07-17 16:57:11 +0200
commit3198eadb748593de5ac803bc49926300c2849a4f (patch)
treef612d6075b7c5cdcb8fe6ab45cbf65aa82d5deed /gitlab/tests
parent4d871aadfaa9f57f5ae9f8b49f8367a5ef58545d (diff)
downloadgitlab-3198eadb748593de5ac803bc49926300c2849a4f.tar.gz
fix unit tests
Diffstat (limited to 'gitlab/tests')
-rw-r--r--gitlab/tests/test_gitlab.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/tests/test_gitlab.py b/gitlab/tests/test_gitlab.py
index 1f15d30..c32a561 100644
--- a/gitlab/tests/test_gitlab.py
+++ b/gitlab/tests/test_gitlab.py
@@ -490,7 +490,7 @@ class TestGitlabMethods(unittest.TestCase):
self.assertEqual(expected, data)
def test_update_kw_missing(self):
- obj = Group(self.gl, data={"name": "testgroup"})
+ obj = Hook(self.gl, data={"name": "testgroup"})
self.assertRaises(GitlabUpdateError, self.gl.update, obj)
def test_update_401(self):