summaryrefslogtreecommitdiff
path: root/git/test/performance/test_commit.py
diff options
context:
space:
mode:
authorKostis Anagnostopoulos <ankostis@gmail.com>2016-10-16 19:25:20 +0200
committerKostis Anagnostopoulos <ankostis@gmail.com>2016-10-16 19:25:20 +0200
commitec731f448d304dfe1f9269cc94de405aeb3a0665 (patch)
tree86c9da1d65c79f271521b3efe525cfb339020457 /git/test/performance/test_commit.py
parentb2efa1b19061ad6ed9d683ba98a88b18bff3bfd9 (diff)
parent9e4a4545dd513204efb6afe40e4b50c3b5f77e50 (diff)
downloadgitpython-ec731f448d304dfe1f9269cc94de405aeb3a0665.tar.gz
Merge with #532, fix unicode filenames with escapesurogates
Diffstat (limited to 'git/test/performance/test_commit.py')
-rw-r--r--git/test/performance/test_commit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/performance/test_commit.py b/git/test/performance/test_commit.py
index c60dc2fc..322d3c9f 100644
--- a/git/test/performance/test_commit.py
+++ b/git/test/performance/test_commit.py
@@ -52,7 +52,7 @@ class TestPerformance(TestBigRepoRW):
# END for each object
# END for each commit
elapsed_time = time() - st
- print("Traversed %i Trees and a total of %i unchached objects in %s [s] ( %f objs/s )"
+ print("Traversed %i Trees and a total of %i uncached objects in %s [s] ( %f objs/s )"
% (nc, no, elapsed_time, no / elapsed_time), file=sys.stderr)
def test_commit_traversal(self):