commit da1e0a75082efef9e24f86fbba68e6c47116619c Author: Damian Johnson atagar@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)
tor-commits@lists.torproject.org