tests/test-persistent-nodemap.t
changeset 50510 4fe46f96b56b
parent 50481 b08243dbc2e3
child 50511 c847a3e82056
--- a/tests/test-persistent-nodemap.t	Thu May 18 18:45:54 2023 +0100
+++ b/tests/test-persistent-nodemap.t	Thu May 18 19:37:12 2023 +0100
@@ -154,8 +154,8 @@
 #endif
 
   $ hg debugnodemap --check
-  revision in index:   5001
-  revision in nodemap: 5001
+  revisions in index:   5001
+  revisions in nodemap: 5001
 
 add a new commit
 
@@ -241,8 +241,8 @@
 #endif
 
   $ hg debugnodemap --check
-  revision in index:   5002
-  revision in nodemap: 5002
+  revisions in index:   5002
+  revisions in nodemap: 5002
 
 Test code path without mmap
 ---------------------------
@@ -252,11 +252,11 @@
   $ hg ci -m 'bar' --config storage.revlog.persistent-nodemap.mmap=no
 
   $ hg debugnodemap --check --config storage.revlog.persistent-nodemap.mmap=yes
-  revision in index:   5003
-  revision in nodemap: 5003
+  revisions in index:   5003
+  revisions in nodemap: 5003
   $ hg debugnodemap --check --config storage.revlog.persistent-nodemap.mmap=no
-  revision in index:   5003
-  revision in nodemap: 5003
+  revisions in index:   5003
+  revisions in nodemap: 5003
 
 
 #if pure