D2202: tests: remove code to support Mercurial 4.3

indygreg (Gregory Szorc) phabricator at mercurial-scm.org
Tue Feb 13 12:27:53 EST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG48797b21882e: tests: remove code to support Mercurial 4.3 (authored by indygreg, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D2202?vs=5571&id=5648

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

AFFECTED FILES
  tests/test-narrow-expanddirstate.t

CHANGE DETAILS

diff --git a/tests/test-narrow-expanddirstate.t b/tests/test-narrow-expanddirstate.t
--- a/tests/test-narrow-expanddirstate.t
+++ b/tests/test-narrow-expanddirstate.t
@@ -75,23 +75,13 @@
   >   def wrapds(orig, self):
   >     ds = orig(self)
   >     class expandingdirstate(ds.__class__):
-  >       # Mercurial 4.4 uses this version.
   >       @hgutil.propertycache
   >       def _map(self):
   >         ret = super(expandingdirstate, self)._map
   >         with repo.wlock(), repo.lock(), repo.transaction(
   >             'expandnarrowspec'):
   >           expandnarrowspec(ui, repo, os.environ.get('DIRSTATEINCLUDES'))
   >         return ret
-  >       # Mercurial 4.3.3 and earlier uses this version. It seems that
-  >       # narrowhg does not currently support this version, but we include
-  >       # it just in case backwards compatibility is restored.
-  >       def _read(self):
-  >         ret = super(expandingdirstate, self)._read()
-  >         with repo.wlock(), repo.lock(), repo.transaction(
-  >             'expandnarrowspec'):
-  >           expandnarrowspec(ui, repo, os.environ.get('DIRSTATEINCLUDES'))
-  >         return ret
   >     ds.__class__ = expandingdirstate
   >     return ds
   >   return wrapds



To: indygreg, #hg-reviewers, durin42
Cc: mercurial-devel


More information about the Mercurial-devel mailing list