##// END OF EJS Templates
tests: use native string type for parsed hghave log lines...
Manuel Jacob -
r44959:69ae6463 default
parent child Browse files
Show More
@@ -2067,12 +2067,10 b' class TTest(Test):'
2067 2067 for line in lines:
2068 2068 if line.startswith(TTest.SKIPPED_PREFIX):
2069 2069 line = line.splitlines()[0]
2070 missing.append(
2071 line[len(TTest.SKIPPED_PREFIX) :].decode('utf-8')
2072 )
2070 missing.append(_bytes2sys(line[len(TTest.SKIPPED_PREFIX) :]))
2073 2071 elif line.startswith(TTest.FAILED_PREFIX):
2074 2072 line = line.splitlines()[0]
2075 failed.append(line[len(TTest.FAILED_PREFIX) :].decode('utf-8'))
2073 failed.append(_bytes2sys(line[len(TTest.FAILED_PREFIX) :]))
2076 2074
2077 2075 return missing, failed
2078 2076
General Comments 0
You need to be logged in to leave comments. Login now