tests: properly sort imports in test-nointerrupt.t
Somehow this was only detected in Python 3.
Differential Revision: https://phab.mercurial-scm.org/D3923
--- a/tests/test-nointerrupt.t Wed Jul 11 11:34:41 2018 -0400
+++ b/tests/test-nointerrupt.t Wed Jul 11 11:41:14 2018 -0400
@@ -1,10 +1,10 @@
Dummy extension simulating unsafe long running command
$ cat > sleepext.py <<EOF
+ > import itertools
> import time
- > import itertools
>
+ > from mercurial.i18n import _
> from mercurial import registrar
- > from mercurial.i18n import _
>
> cmdtable = {}
> command = registrar.command(cmdtable)