# HG changeset patch # User Raphaël Gomès # Date 1636537854 -3600 # Node ID 6505d3902eace578ca5a609d619b6f816c2b11ac # Parent 6e576e4665f43101ef9bb98b0f5234f85c5db2ea hghave: update dirstate-v2 format config option It wasn't kept in sync with the new change in format name. Differential Revision: https://phab.mercurial-scm.org/D11744 diff -r 6e576e4665f4 -r 6505d3902eac tests/hghave.py --- a/tests/hghave.py Tue Nov 09 22:06:40 2021 +0530 +++ b/tests/hghave.py Wed Nov 10 10:50:54 2021 +0100 @@ -1061,7 +1061,7 @@ def has_dirstate_v2(): # Keep this logic in sync with `newreporequirements()` in `mercurial/localrepo.py` return has_rust() and matchoutput( - 'hg config format.exp-dirstate-v2', b'(?i)1|yes|true|on|always' + 'hg config format.exp-rc-dirstate-v2', b'(?i)1|yes|true|on|always' )