tests/test-issue1089.t
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 26 Mar 2024 08:39:08 +0000
changeset 51545 700783ed3415
parent 49621 55c6ebd11cb9
permissions -rw-r--r--
perf-stream-locked-section: fix the call to the v3 generator That generator simply return chunks so we should not assign the return to a tuple.

https://bz.mercurial-scm.org/1089

  $ hg init repo
  $ cd repo
  $ mkdir a
  $ echo a > a/b
  $ hg ci -Am m
  adding a/b

  $ hg rm a
  removing a/b
  $ hg ci -m m a

  $ mkdir a b
  $ echo a > a/b
  $ hg ci -Am m
  adding a/b

  $ hg rm a
  removing a/b
  $ cd b

Relative delete:

  $ hg ci -m m ../a

  $ cd ..