changeset 34764 | af43cb56af4e |
parent 34444 | df78b1a24094 |
child 39925 | dfca83594145 |
--- a/tests/test-logtoprocess.t Fri Oct 13 23:10:49 2017 +0200 +++ b/tests/test-logtoprocess.t Fri Oct 13 23:46:37 2017 +0200 @@ -12,6 +12,11 @@ > from mercurial import registrar > cmdtable = {} > command = registrar.command(cmdtable) + > configtable = {} + > configitem = registrar.configitem(configtable) + > configitem('logtoprocess', 'foo', + > default=None, + > ) > @command(b'foo', []) > def foo(ui, repo): > ui.log('foo', 'a message: %(bar)s\n', bar='spam')