# HG changeset patch
# User Augie Fackler <augie@google.com>
# Date 2017-09-19 04:07:23
# Node ID df1c290df0349dfc400ab089bccef7adee96e7b2
# Parent  8999851a503fa13a84a6a1343be3ca9b882bc3d8

tests: fix run-tests "slow test" check

Look for bytes in a set of bytes objects.

diff --git a/tests/run-tests.py b/tests/run-tests.py
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -1265,7 +1265,7 @@ class TTest(Test):
         if ret != 0:
             return False, stdout
 
-        if 'slow' in reqs:
+        if b'slow' in reqs:
             self._timeout = self._slowtimeout
         return True, None