changeset 33540 | e07c5740eaaa |
parent 33331 | 4bae3c117b57 |
child 33558 | 0103e7187237 |
--- a/tests/test-strip.t Sat Jul 15 23:49:22 2017 +0200 +++ b/tests/test-strip.t Sun Jul 16 02:38:14 2017 +0200 @@ -928,7 +928,7 @@ > def reposetup(ui, repo): > class crashstriprepo(repo.__class__): > def transaction(self, desc, *args, **kwargs): - > tr = super(crashstriprepo, self).transaction(self, desc, *args, **kwargs) + > tr = super(crashstriprepo, self).transaction(desc, *args, **kwargs) > if desc == 'strip': > def crash(tra): raise error.Abort('boom') > tr.addpostclose('crash', crash)