Mercurial > public > mercurial-scm > hg-stable
diff tests/test-nointerrupt.t @ 41079:8ecb17b7f432
procutil: correct spelling of uninterruptable -> uninterruptible
Differential Revision: https://phab.mercurial-scm.org/D5488
author | Kyle Lippincott <spectral@google.com> |
---|---|
date | Fri, 28 Dec 2018 12:51:47 -0800 |
parents | 3ba87d5b9ad3 |
children | 0826d684a1b5 |
line wrap: on
line diff
--- a/tests/test-nointerrupt.t Fri Dec 28 18:14:10 2018 -0500 +++ b/tests/test-nointerrupt.t Fri Dec 28 12:51:47 2018 -0800 @@ -13,7 +13,7 @@ > > @command(b'sleep', [], _(b'TIME'), norepo=True) > def sleep(ui, sleeptime=b"1", **opts): - > with ui.uninterruptable(): + > with ui.uninterruptible(): > for _i in itertools.repeat(None, int(sleeptime)): > time.sleep(1) > ui.warn(b"end of unsafe operation\n")