summaryrefslogtreecommitdiff
path: root/git/test/test_index.py
diff options
context:
space:
mode:
authorKostis Anagnostopoulos <ankostis@gmail.com>2016-09-28 19:04:33 +0200
committerKostis Anagnostopoulos <ankostis@gmail.com>2016-09-29 00:58:23 +0200
commitf1d2d0683afa6328b6015c6a3aa6a6912a055756 (patch)
tree26341b3ae569e78c644b450fb14723be49aaf5fe /git/test/test_index.py
parent0574b8b921dbfe1b39de68be7522b248b8404892 (diff)
downloadgitpython-f1d2d0683afa6328b6015c6a3aa6a6912a055756.tar.gz
FIX tox/requirements
Diffstat (limited to 'git/test/test_index.py')
-rw-r--r--git/test/test_index.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/git/test/test_index.py b/git/test/test_index.py
index 08d6491d..46cc990d 100644
--- a/git/test/test_index.py
+++ b/git/test/test_index.py
@@ -731,9 +731,9 @@ class TestIndex(TestBase):
except HookExecutionError as err:
if is_win:
self.assertIsInstance(err.status, OSError)
- self.assertEqual(err.command, hp)
- self.assertIsNone(err.stdout)
- self.assertIsNone(err.stderr)
+ self.assertEqual(err.command, [hp])
+ self.assertEqual(err.stdout, '')
+ self.assertEqual(err.stderr, '')
assert str(err)
else:
self.assertEqual(err.status, 1)