diff -r 1b73868d17cf -r 4fe46f96b56b tests/test-persistent-nodemap.t --- 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