# HG changeset patch # User Matt Harbison # Date 1539536753 14400 # Node ID 43f0a37bd9ed20b45d73f667acbb0c3035492e1a # Parent da1629c7dda17853c8cbaad0ef14a899af6e9361 py3: byteify extension in test-relink.t diff -r da1629c7dda1 -r 43f0a37bd9ed tests/test-relink.t --- a/tests/test-relink.t Sat Oct 13 04:20:22 2018 -0400 +++ b/tests/test-relink.t Sun Oct 14 13:05:53 2018 -0400 @@ -11,9 +11,12 @@ > from __future__ import absolute_import, print_function > import os > import sys - > from mercurial import util + > from mercurial import ( + > pycompat, + > util, + > ) > path1, path2 = sys.argv[1:3] - > if util.samefile(path1, path2): + > if util.samefile(pycompat.fsencode(path1), pycompat.fsencode(path2)): > print('%s == %s' % (path1, path2)) > else: > print('%s != %s' % (path1, path2))