diff options
author | David Aguilar <davvid@gmail.com> | 2008-06-01 23:04:57 -0700 |
---|---|---|
committer | David Aguilar <davvid@gmail.com> | 2008-06-01 23:04:57 -0700 |
commit | 57a561cda141a0fed3129f4f3488e3b91805e638 (patch) | |
tree | cc13fd258aa7a9a04417550c999dab55ba7b78e3 /test/git/test_git.py | |
parent | edf9fc528277a53ec37d1bd79fb4f8608cce11ae (diff) | |
download | gitpython-57a561cda141a0fed3129f4f3488e3b91805e638.tar.gz |
tests: removed an obsolete comment in test_it_ignores_false_kwargs
Signed-off-by: David Aguilar <davvid@gmail.com>
Diffstat (limited to 'test/git/test_git.py')
-rw-r--r-- | test/git/test_git.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/git/test_git.py b/test/git/test_git.py index e452e68b..82644b6d 100644 --- a/test/git/test_git.py +++ b/test/git/test_git.py @@ -58,6 +58,5 @@ class TestGit(object): @patch(Git, 'execute') def test_it_ignores_false_kwargs(self, git): - # this_should_not_be_ignored=False implies it *should* be ignored output = self.git.version(pass_this_kwarg=False) assert_true("pass_this_kwarg" not in git.call_args[1]) |