# HG changeset patch # User Robert Stanca # Date 2016-04-16 02:33:23 # Node ID 05982f7ab231d5143bc75393540b2f1a9633bfbe # Parent 036787c10b16666b883e1ac745cd64bcbf6a9250 py3: use absolute_import in revlog-formatv0.py diff --git a/tests/revlog-formatv0.py b/tests/revlog-formatv0.py --- a/tests/revlog-formatv0.py +++ b/tests/revlog-formatv0.py @@ -17,7 +17,9 @@ description: empty file """ -import os, sys +from __future__ import absolute_import +import os +import sys files = [ ('formatv0/.hg/00changelog.i', diff --git a/tests/test-check-py3-compat.t b/tests/test-check-py3-compat.t --- a/tests/test-check-py3-compat.t +++ b/tests/test-check-py3-compat.t @@ -44,7 +44,6 @@ tests/md5sum.py not using absolute_import tests/readlink.py not using absolute_import tests/readlink.py requires print_function - tests/revlog-formatv0.py not using absolute_import tests/run-tests.py not using absolute_import tests/sitecustomize.py not using absolute_import tests/svn-safe-append.py not using absolute_import