changeset 49986:dbcc45221c1f

test: explicitly "add" file before some commit in test-rollback.t `hg commit -A` will revert the `hg addremove` step if the commit fails. However `hg rollback` currently does not. We are about to improve internal consistency around transaction and dirstate and the behavior of `hg rollback` will align on the other behavior in the process. Before doing so, we make sure the test is using a separate call to `hg add` to avoid the test scenario to be affected by that future change. note: the behavior change for `hg rollback` seems fine as it affect a niche usecase and `hg rollback` usage have been strongly discouraged for a while.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 13 Feb 2023 17:42:32 +0100
parents e57f76c28f7b
children 1e6015ddf698
files tests/test-rollback.t
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tests/test-rollback.t	Wed Jan 11 17:30:55 2023 +0100
+++ b/tests/test-rollback.t	Mon Feb 13 17:42:32 2023 +0100
@@ -2,8 +2,8 @@
   $ hg init t
   $ cd t
   $ echo a > a
-  $ hg commit -Am'add a'
-  adding a
+  $ hg add a
+  $ hg commit -m 'add a'
   $ hg verify -q
   $ hg parents
   changeset:   0:1f0dee641bb7