summaryrefslogtreecommitdiff
path: root/tests/parse_results.py
diff options
context:
space:
mode:
authoramajorek <devnull@localhost>2010-03-09 08:45:37 -0500
committeramajorek <devnull@localhost>2010-03-09 08:45:37 -0500
commit37e992ceeea780f77674ef303d2d248b5db82c65 (patch)
treecb81d746c0b7176d92ec5e226761932a578e73b5 /tests/parse_results.py
parentfcafbbf322c3c38079bf05ab21db0b7a3139e867 (diff)
downloadeventlet-37e992ceeea780f77674ef303d2d248b5db82c65.tar.gz
py3k - corrections for deprecation warnings reported by python2.6 -3.
- integer division - repr instead of ` Added __hash__ to speedy Proxy funtions - 3.x requires __hash__ if __eq__ is defined. Found problem with comparing two proxy objects.
Diffstat (limited to 'tests/parse_results.py')
-rw-r--r--tests/parse_results.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/parse_results.py b/tests/parse_results.py
index 62feac5..44bd786 100644
--- a/tests/parse_results.py
+++ b/tests/parse_results.py
@@ -46,7 +46,7 @@ def parse_unittest_output(s):
fail = int(fail or '0')
error = int(error or '0')
else:
- assert ok_match, `s`
+ assert ok_match, repr(s)
timeout_match = re.search('^===disabled because of timeout: (\d+)$', s, re.M)
if timeout_match:
timeout = int(timeout_match.group(1))