tests/test-obsolete.t
changeset 47431 fca9c63f160e
parent 46874 84a93fa7ecfd
child 48116 5ced12cfa41b
--- a/tests/test-obsolete.t	Thu Jun 10 14:47:14 2021 -0700
+++ b/tests/test-obsolete.t	Thu Jun 10 14:55:10 2021 -0700
@@ -1478,9 +1478,8 @@
   > command = registrar.command(cmdtable)
   > @command(b"amendtransient",[], _(b'hg amendtransient [rev]'))
   > def amend(ui, repo, *pats, **opts):
-  >   opts = pycompat.byteskwargs(opts)
-  >   opts[b'message'] = b'Test'
-  >   opts[b'logfile'] = None
+  >   opts['message'] = b'Test'
+  >   opts['logfile'] = None
   >   cmdutil.amend(ui, repo, repo[b'.'], {}, pats, opts)
   >   ui.write(b'%s\n' % stringutil.pprint(repo.changelog.headrevs()))
   > EOF