tests: fix run-tests "slow test" check
authorAugie Fackler <augie@google.com>
Tue, 19 Sep 2017 00:07:23 -0400
changeset 34265 df1c290df034
parent 34264 8999851a503f
child 34266 cd2ee4db8f95
tests: fix run-tests "slow test" check Look for bytes in a set of bytes objects.
tests/run-tests.py
--- a/tests/run-tests.py	Tue Sep 19 00:06:57 2017 -0400
+++ b/tests/run-tests.py	Tue Sep 19 00:07:23 2017 -0400
@@ -1265,7 +1265,7 @@
         if ret != 0:
             return False, stdout
 
-        if 'slow' in reqs:
+        if b'slow' in reqs:
             self._timeout = self._slowtimeout
         return True, None