tests: sort some imports that were previously missed
authorAugie Fackler <augie@google.com>
Wed, 29 May 2019 09:56:27 -0400
changeset 42408 055687fe4c47
parent 42407 04eb3c5607af
child 42409 37f38e1dea44
tests: sort some imports that were previously missed I'm a little unclear why the import checker didn't catch this before, but when I fixed it to work in Python 3 this failure started showing up. Sigh. Differential Revision: https://phab.mercurial-scm.org/D6454
tests/test-bookmarks-corner-case.t
--- a/tests/test-bookmarks-corner-case.t	Wed May 29 09:55:35 2019 -0400
+++ b/tests/test-bookmarks-corner-case.t	Wed May 29 09:56:27 2019 -0400
@@ -116,10 +116,10 @@
 We build a server side extension for this purpose
 
   $ cat > bookrace.py << EOF
+  > import atexit
   > import os
   > import time
-  > import atexit
-  > from mercurial import error, extensions, bookmarks
+  > from mercurial import bookmarks, error, extensions
   > def wrapinit(orig, self, repo):
   >     if not os.path.exists('push-A-started'):
   >         print('setting raced push up')