##// END OF EJS Templates
run-tests: do not compare bytes with str while ordering tests...
Yuya Nishihara -
r28096:62ef4427 default
parent child Browse files
Show More
@@ -1878,7 +1878,7 b' class TestRunner(object):'
1878 for kw, mul in slow.items():
1878 for kw, mul in slow.items():
1879 if kw in f:
1879 if kw in f:
1880 val *= mul
1880 val *= mul
1881 if f.endswith('.py'):
1881 if f.endswith(b'.py'):
1882 val /= 10.0
1882 val /= 10.0
1883 perf[f] = val / 1000.0
1883 perf[f] = val / 1000.0
1884 return perf[f]
1884 return perf[f]
General Comments 0
You need to be logged in to leave comments. Login now