D5673: py3: use dict.items() instead of dict.iteritems() in tests/test-lfs-server.t

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Fri Jan 25 05:44:36 EST 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGdafd13c7237b: py3: use dict.items() instead of dict.iteritems() in tests/test-lfs-server.t (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D5673?vs=13391&id=13445

REVISION DETAIL
  https://phab.mercurial-scm.org/D5673

AFFECTED FILES
  tests/test-lfs-serve.t

CHANGE DETAILS

diff --git a/tests/test-lfs-serve.t b/tests/test-lfs-serve.t
--- a/tests/test-lfs-serve.t
+++ b/tests/test-lfs-serve.t
@@ -51,7 +51,7 @@
   >     opts[b'manifest'] = False
   >     opts[b'dir'] = False
   >     rl = cmdutil.openrevlog(repo, b'debugprocessors', file_, opts)
-  >     for flag, proc in rl._flagprocessors.iteritems():
+  >     for flag, proc in rl._flagprocessors.items():
   >         ui.status(b"registered processor '%#x'\n" % (flag))
   > EOF
 



To: pulkit, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list