[tor-commits] [stem/master] Correcting incorrect variable in logging
atagar at torproject.org
atagar at torproject.org
Wed Jun 6 16:23:49 UTC 2012
commit da1e0a75082efef9e24f86fbba68e6c47116619c
Author: Damian Johnson <atagar at torproject.org>
Date: Wed Jun 6 09:23:11 2012 -0700
Correcting incorrect variable in logging
Issue caught by Karsten.
---
test/integ/process.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/test/integ/process.py b/test/integ/process.py
index 470faa7..61440fd 100644
--- a/test/integ/process.py
+++ b/test/integ/process.py
@@ -51,5 +51,5 @@ class TestProcess(unittest.TestCase):
runtime = time.time() - start_time
if not (runtime > 2 and runtime < 3):
- self.fail("Test should have taken 2-3 seconds, took %i instead" % timeout)
+ self.fail("Test should have taken 2-3 seconds, took %i instead" % runtime)
More information about the tor-commits
mailing list