diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-15 10:33:13 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-15 10:33:13 +0200 |
| commit | 58d692e2a1d7e3894dbed68efbcf7166d6ec3fb7 (patch) | |
| tree | 1f357dfaec33d1f808b74214771ea2bd78ac50c2 /test/git/test_tag.py | |
| parent | 4186a2dbbd48fd67ff88075c63bbd3e6c1d8a2df (diff) | |
| download | GitPython-58d692e2a1d7e3894dbed68efbcf7166d6ec3fb7.tar.gz GitPython-58d692e2a1d7e3894dbed68efbcf7166d6ec3fb7.zip | |
All times are not stored as time_struct, but as simple int to consume less memory
time imports cleaned up and mostly removed as they were not required (anymore)
Diffstat (limited to 'test/git/test_tag.py')
| -rw-r--r-- | test/git/test_tag.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/git/test_tag.py b/test/git/test_tag.py index 2ebb860a..8f12bf11 100644 --- a/test/git/test_tag.py +++ b/test/git/test_tag.py @@ -8,7 +8,6 @@ from mock import * from test.testlib import * from git import * from git.objects.tag import TagObject -import time class TestTag(object): def setup(self): @@ -26,7 +25,7 @@ class TestTag(object): assert isinstance( tagobj, TagObject ) assert tagobj.tag == tag.name assert isinstance( tagobj.tagger, Actor ) - assert isinstance( tagobj.tagged_date, time.struct_time ) + assert isinstance( tagobj.tagged_date, int ) assert tagobj.message # END if we have a tag object # END for tag in repo-tags |
