# HG changeset patch # User Augie Fackler # Date 1539529581 14400 # Node ID b8db53f786f0e14c8df474e7b9ad3014b2ae3027 # Parent af2306bf7d5de7a09ec8e30193b80c96240af9cb tests: add missing b prefix in test-context-metadata.t # skip-blame just a b prefix Differential Revision: https://phab.mercurial-scm.org/D5109 diff -r af2306bf7d5d -r b8db53f786f0 contrib/python3-whitelist --- a/contrib/python3-whitelist Sun Oct 14 11:05:41 2018 -0400 +++ b/contrib/python3-whitelist Sun Oct 14 11:06:21 2018 -0400 @@ -89,6 +89,7 @@ test-config.t test-conflict.t test-confused-revert.t +test-context-metadata.t test-context.py test-contrib-check-code.t test-contrib-check-commit.t diff -r af2306bf7d5d -r b8db53f786f0 tests/test-context-metadata.t --- a/tests/test-context-metadata.t Sun Oct 14 11:05:41 2018 -0400 +++ b/tests/test-context-metadata.t Sun Oct 14 11:06:21 2018 -0400 @@ -22,7 +22,7 @@ > with repo.wlock(), repo.lock(), repo.transaction(b'metaedit'): > old = repo[b'.'] > kwargs = dict(s.split(b'=', 1) for s in arg.split(b';')) - > if 'parents' in kwargs: + > if b'parents' in kwargs: > kwargs[b'parents'] = map(int, kwargs[b'parents'].split(b',')) > new = context.metadataonlyctx(repo, old, > **pycompat.strkwargs(kwargs))