Submitter | phabricator |
---|---|
Date | Feb. 14, 2018, 12:13 a.m. |
Message ID | <differential-rev-PHID-DREV-dr3rm5rfwo5zur7boijd-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/27863/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/tests/test-histedit-fold.t b/tests/test-histedit-fold.t --- a/tests/test-histedit-fold.t +++ b/tests/test-histedit-fold.t @@ -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]