diff options
author | Rick Copeland <rcopeland@geek.net> | 2010-05-07 15:18:19 -0400 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-05-10 22:16:10 +0200 |
commit | de5bc8f7076c5736ef1efa57345564fbc563bd19 (patch) | |
tree | fa7df33ffa4399fbf6b79b35916b2acafe3903e7 /test/git/test_refs.py | |
parent | c083f3d0b853e723d0d4b00ff2f1ec5f65f05cba (diff) | |
download | gitpython-de5bc8f7076c5736ef1efa57345564fbc563bd19.tar.gz |
Handle filenames with embedded spaces when generating diffs
Diffstat (limited to 'test/git/test_refs.py')
-rw-r--r-- | test/git/test_refs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/git/test_refs.py b/test/git/test_refs.py index 58a51f4a..7c487bd0 100644 --- a/test/git/test_refs.py +++ b/test/git/test_refs.py @@ -37,6 +37,7 @@ class TestRefs(TestBase): assert tagobj.tag == tag.name assert isinstance( tagobj.tagger, Actor ) assert isinstance( tagobj.tagged_date, int ) + assert isinstance( tagobj.tagger_tz_offset, int ) assert tagobj.message # END if we have a tag object # END for tag in repo-tags |