diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-10-25 11:58:11 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-10-25 11:58:11 +0200 |
commit | 8858a63cb33319f3e739edcbfafdae3ec0fefa33 (patch) | |
tree | d7ff9e3d9847dc2edd6e0b8dcd3553a98121ad7f /test/git/test_index.py | |
parent | 94029ce1420ced83c3e5dcd181a2280b26574bc9 (diff) | |
download | gitpython-8858a63cb33319f3e739edcbfafdae3ec0fefa33.tar.gz |
.gitignore will now ignore netbeans projects
Fixed test which used the --force flag on move, but there is only a short version (left) it appears
Diffstat (limited to 'test/git/test_index.py')
-rw-r--r-- | test/git/test_index.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_index.py b/test/git/test_index.py index 30f38257..13d2c10d 100644 --- a/test/git/test_index.py +++ b/test/git/test_index.py @@ -546,7 +546,7 @@ class TestIndex(TestBase): self.failUnlessRaises(GitCommandError, index.move, files) # again, with force - assert_mv_rval(index.move(files, force=True)) + assert_mv_rval(index.move(files, f=True)) # files into directory - dry run paths = ['LICENSE', 'VERSION', 'doc'] |