diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2014-11-15 16:21:47 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2014-11-15 16:21:47 +0100 |
commit | 7aba59a2609ec768d5d495dafd23a4bce8179741 (patch) | |
tree | 9d999b14a7817b1ceeb23ddd1cded446ace9255c /git/test/test_git.py | |
parent | 9c39afa1f85f3293ad2ccef684ff62bf0a36e73c (diff) | |
parent | ff13922f6cfb11128b7651ddfcbbd5cad67e477f (diff) | |
download | gitpython-7aba59a2609ec768d5d495dafd23a4bce8179741.tar.gz |
Merge branch 'johnsca-sf-master' into 0.3
Merge all fixes from https://github.com/gitpython-developers/GitPython/pull/134
Diffstat (limited to 'git/test/test_git.py')
-rw-r--r-- | git/test/test_git.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_git.py b/git/test/test_git.py index cdea1d3e..7132aa83 100644 --- a/git/test/test_git.py +++ b/git/test/test_git.py @@ -18,8 +18,8 @@ from git import ( Git, class TestGit(TestBase): @classmethod - def setUp(cls): - super(TestGit, cls).setUp() + def setUpClass(cls): + super(TestGit, cls).setUpClass() cls.git = Git(cls.rorepo.working_dir) @patch.object(Git, 'execute') |