# HG changeset patch # User Augie Fackler # Date 2018-03-02 02:17:58 # Node ID c4ccc73f9d4942f0b47325d04f80e07b3034ff20 # Parent 9d71bd25554b3fedea70f44b164c20d5bd33cbf9 tests: add missing b prefix in test python in test-issue2137.t # skip-blame just a b prefix Differential Revision: https://phab.mercurial-scm.org/D2539 diff --git a/tests/test-issue2137.t b/tests/test-issue2137.t --- a/tests/test-issue2137.t +++ b/tests/test-issue2137.t @@ -18,7 +18,7 @@ 1 and 2 are preconditions for the bug; 3 > tip1 = node.short(repo.changelog.tip()) > tip2 = node.short(repo.lookup(tip1)) > assert tip1 == tip2 - > ui.write('new tip: %s\n' % tip1) + > ui.write(b'new tip: %s\n' % tip1) > return result > repo.__class__ = wraprepo >