changeset 33988:afb33e73e515

tests: update test-relink to pass our import checker
author Augie Fackler <raf@durin42.com>
date Tue, 22 Aug 2017 17:11:30 -0400
parents ed88f90bb787
children 266192d4666b
files tests/test-relink.t
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/tests/test-relink.t	Tue Aug 22 16:59:26 2017 -0400
+++ b/tests/test-relink.t	Tue Aug 22 17:11:30 2017 -0400
@@ -8,13 +8,15 @@
   > }
 
   $ cat > arelinked.py <<EOF
-  > import sys, os
+  > from __future__ import absolute_import, print_function
+  > import os
+  > import sys
   > from mercurial import util
   > path1, path2 = sys.argv[1:3]
   > if util.samefile(path1, path2):
-  >     print '%s == %s' % (path1, path2)
+  >     print('%s == %s' % (path1, path2))
   > else:
-  >     print '%s != %s' % (path1, path2)
+  >     print('%s != %s' % (path1, path2))
   > EOF