diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-25 18:55:15 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-26 13:37:54 +0200 |
commit | 082851e0afd3a58790fe3c2434f6d070f97c69c1 (patch) | |
tree | adb9138d09b2ca770ff85c69da316e1af9ede8c2 /git | |
parent | 51bf7cbe8216d9a1da723c59b6feece0b1a34589 (diff) | |
download | gitpython-082851e0afd3a58790fe3c2434f6d070f97c69c1.tar.gz |
apveyor: simplify test.
Diffstat (limited to 'git')
-rw-r--r-- | git/test/test_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_util.py b/git/test/test_util.py index c6ca6920..a47697c0 100644 --- a/git/test/test_util.py +++ b/git/test/test_util.py @@ -90,7 +90,7 @@ class TestUtils(TestBase): wait_lock = BlockingLockFile(my_file, 0.05, wait_time) self.failUnlessRaises(IOError, wait_lock._obtain_lock) elapsed = time.time() - start - assert elapsed <= wait_time + 0.02 # some extra time it may cost + assert elapsed <= wait_time + 0.02, elapsed # some extra time it may cost def test_user_id(self): assert '@' in get_user_id() |