# HG changeset patch # User Martin von Zweigbergk # Date 2019-03-06 23:43:52 # Node ID 6a944bf4c43ad2174f021d790ada9770668188b7 # Parent 8c6ba29091555330e79481e835c8e2d34720c3c2 tests: clarify test setup test in test-uncommit.t I assume the "hg uncommit b" is there to prove that the working copy is dirty before we try "hg uncommit --allow-dirty-working-copy b". It seems clearer to put that check just before we run the actual test. Differential Revision: https://phab.mercurial-scm.org/D6078 diff --git a/tests/test-uncommit.t b/tests/test-uncommit.t --- a/tests/test-uncommit.t +++ b/tests/test-uncommit.t @@ -482,10 +482,6 @@ Copy a->b1 and a->b2, then rename b1->c A b $ hg unc a note: keeping empty commit - $ hg unc b - abort: uncommitted changes - (requires --allow-dirty-working-copy to uncommit) - [255] $ cat a super critical info! $ hg log @@ -498,6 +494,10 @@ Copy a->b1 and a->b2, then rename b1->c $ hg ci -Am 'add b' $ echo 'foo bar' > b + $ hg unc b + abort: uncommitted changes + (requires --allow-dirty-working-copy to uncommit) + [255] $ hg unc --allow-dirty-working-copy b $ hg log changeset: 3:30fa958635b2