diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-07-17 16:57:11 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-07-17 16:57:11 +0200 |
commit | 3198eadb748593de5ac803bc49926300c2849a4f (patch) | |
tree | f612d6075b7c5cdcb8fe6ab45cbf65aa82d5deed /gitlab/tests | |
parent | 4d871aadfaa9f57f5ae9f8b49f8367a5ef58545d (diff) | |
download | gitlab-3198eadb748593de5ac803bc49926300c2849a4f.tar.gz |
fix unit tests
Diffstat (limited to 'gitlab/tests')
-rw-r--r-- | gitlab/tests/test_gitlab.py | 2 |
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): |