# HG changeset patch # User Augie Fackler # Date 2018-07-11 15:41:14 # Node ID 531f5e933e49b4ea4c2145e12be85a8cf5f1a308 # Parent cd1c484e31e8c4bb6020370d39600c64ed09ec87 tests: properly sort imports in test-nointerrupt.t Somehow this was only detected in Python 3. Differential Revision: https://phab.mercurial-scm.org/D3923 diff --git a/tests/test-nointerrupt.t b/tests/test-nointerrupt.t --- a/tests/test-nointerrupt.t +++ b/tests/test-nointerrupt.t @@ -1,10 +1,10 @@ Dummy extension simulating unsafe long running command $ cat > sleepext.py < import itertools > import time - > import itertools > + > from mercurial.i18n import _ > from mercurial import registrar - > from mercurial.i18n import _ > > cmdtable = {} > command = registrar.command(cmdtable)