# HG changeset patch # User Augie Fackler # Date 1516287520 18000 # Node ID c4c1e3334bcb2f1ca7db5b871b31d9c81d494e74 # Parent be923ce44d6a781a0c83ff7f3431269e78ccff21 tests: fix a missed b prefix in a test extension in test-strip.t # skip-blame just a bytes prefix Differential Revision: https://phab.mercurial-scm.org/D1907 diff -r be923ce44d6a -r c4c1e3334bcb tests/test-strip.t --- a/tests/test-strip.t Thu Jan 18 09:14:30 2018 -0500 +++ b/tests/test-strip.t Thu Jan 18 09:58:40 2018 -0500 @@ -899,7 +899,7 @@ > transaction = orig(repo, desc, *args, **kwargs) > # warm up the phase cache > list(repo.revs(b"not public()")) - > if desc != 'strip': + > if desc != b'strip': > transaction.addpostclose(b"phase invalidation test", test) > return transaction > def extsetup(ui):