# HG changeset patch # User Augie Fackler # Date 2019-05-29 13:56:27 # Node ID 055687fe4c47252f1e7d1ca4a1bde921072202bd # Parent 04eb3c5607afde2d12161255a0d2eb4acb8363ae 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 diff --git a/tests/test-bookmarks-corner-case.t b/tests/test-bookmarks-corner-case.t --- a/tests/test-bookmarks-corner-case.t +++ b/tests/test-bookmarks-corner-case.t @@ -116,10 +116,10 @@ If two process are pushing we want to ma 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')