changeset 41386 | baffda74891c |
parent 41318 | 6e54caaed08d |
child 41531 | 14983ac4a764 |
--- a/tests/test-install.t Fri Jan 25 21:19:51 2019 -0500 +++ b/tests/test-install.t Fri Jan 25 22:32:45 2019 -0500 @@ -188,10 +188,9 @@ > stderr=subprocess.PIPE) > output = proc.communicate()[0] > - > slash = '/' > for line in output.splitlines(): > if os.name == 'nt': - > yield line.replace(os.sep, slash) + > yield line.replace(pycompat.sysbytes(os.sep), b'/') > else: > yield line >