narrow: stop using `normallookup` during a test
authorPierre-Yves David <pierre-yves.david@octobus.net>
Mon, 19 Jul 2021 15:41:51 +0200
changeset 47740 28d5e05c139a
parent 47739 6a06155dfaef
child 47741 9f19d9f2d191
narrow: stop using `normallookup` during a test Differential Revision: https://phab.mercurial-scm.org/D11182
tests/test-narrow-expanddirstate.t
--- a/tests/test-narrow-expanddirstate.t	Mon Jul 19 08:44:49 2021 +0200
+++ b/tests/test-narrow-expanddirstate.t	Mon Jul 19 15:41:51 2021 +0200
@@ -74,8 +74,14 @@
   >   narrowspec.copytoworkingcopy(repo)
   >   newmatcher = narrowspec.match(repo.root, includes, excludes)
   >   added = matchmod.differencematcher(newmatcher, currentmatcher)
-  >   for f in repo[b'.'].manifest().walk(added):
-  >     repo.dirstate.normallookup(f)
+  >   with repo.dirstate.parentchange():
+  >       for f in repo[b'.'].manifest().walk(added):
+  >           repo.dirstate.update_file(
+  >               f,
+  >               p1_tracked=True,
+  >               wc_tracked=True,
+  >               possibly_dirty=True,
+  >           )
   > 
   > def reposetup(ui, repo):
   >   class expandingrepo(repo.__class__):