tests/test-histedit-fold.t
changeset 36171 f8f1973eaf8a
parent 35393 4441705b7111
child 38341 50f5fc232c16
--- a/tests/test-histedit-fold.t	Tue Feb 13 18:25:05 2018 -0500
+++ b/tests/test-histedit-fold.t	Tue Feb 13 18:47:55 2018 -0500
@@ -154,9 +154,9 @@
   > from mercurial import util
   > def abortfolding(ui, repo, hooktype, **kwargs):
   >     ctx = repo[kwargs.get('node')]
-  >     if set(ctx.files()) == {'c', 'd', 'f'}:
+  >     if set(ctx.files()) == {b'c', b'd', b'f'}:
   >         return True # abort folding commit only
-  >     ui.warn('allow non-folding commit\\n')
+  >     ui.warn(b'allow non-folding commit\\n')
   > EOF
   $ cat > .hg/hgrc <<EOF
   > [hooks]