test: use `set_tracked` in `test-context`
authorPierre-Yves David <pierre-yves.david@octobus.net>
Mon, 19 Jul 2021 06:44:08 +0200
changeset 47718 03ef0c8fa7d5
parent 47717 d905eff405d1
child 47719 1168e54b727c
test: use `set_tracked` in `test-context` This is apparently the last user of the old API. Differential Revision: https://phab.mercurial-scm.org/D11160
tests/test-context.py
--- a/tests/test-context.py	Sun Jul 18 22:49:26 2021 +0200
+++ b/tests/test-context.py	Mon Jul 19 06:44:08 2021 +0200
@@ -240,7 +240,7 @@
 with repo.wlock(), repo.lock(), repo.transaction(b'test'):
     with open(b'4', 'wb') as f:
         f.write(b'4')
-    repo.dirstate.normal(b'4')
+    repo.dirstate.set_tracked(b'4')
     repo.commit(b'4')
     revsbefore = len(repo.changelog)
     repo.invalidate(clearfilecache=True)