diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-04-30 09:57:03 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-04-30 09:57:03 +0200 |
commit | 0d6ceabf5b90e7c0690360fc30774d36644f563c (patch) | |
tree | 0324cacca04f12df94140c98c69f0bc5e4aa91d5 /test/git/test_performance.py | |
parent | b75c3103a700ac65b6cd18f66e2d0a07cfc09797 (diff) | |
download | gitpython-0d6ceabf5b90e7c0690360fc30774d36644f563c.tar.gz |
Added additional tz_offset testing in performance test to call it more often.
Fixed test which required to be on master to work - it now uses the HEAD symbolic ref instead.
Diffstat (limited to 'test/git/test_performance.py')
-rw-r--r-- | test/git/test_performance.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/git/test_performance.py b/test/git/test_performance.py index 588f1e14..72acfcac 100644 --- a/test/git/test_performance.py +++ b/test/git/test_performance.py @@ -13,9 +13,12 @@ class TestPerformance(TestBase): def _query_commit_info(self, c): c.author c.authored_date + c.author_tz_offset c.committer c.committed_date + c.committer_tz_offset c.message + c.parents def test_iteration(self): num_objs = 0 |