# HG changeset patch # User Pierre-Yves David # Date 1676500750 -3600 # Node ID b35fb0e5b8d614a26376ba74725ceb534058ad0b # Parent 059910ac7b766ce3337a32f426ce1402c640c29e rollback: avoid a `hg commit --addremove` at a critical point The rollback behavior around `hg commit --addremove` has changed slightly. It does not really matters here but keeping that variant out of the way cannot hurt. diff -r 059910ac7b76 -r b35fb0e5b8d6 tests/test-rollback.t --- a/tests/test-rollback.t Wed Feb 15 20:48:51 2023 +0100 +++ b/tests/test-rollback.t Wed Feb 15 23:39:10 2023 +0100 @@ -70,8 +70,8 @@ | o 0 [default] (bar) add a again - $ hg commit -Am'add b' - adding b + $ hg add b + $ hg commit -m'add b' $ hg log -G --template '{rev} [{branch}] ({bookmarks}) {desc|firstline}\n' @ 2 [test] (foo) add b |