From e6084586c573b2672245496740793c16ea309728 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Tue, 28 Feb 2017 08:50:09 -0800 Subject: py2/3 fix --- test/Alias/scanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Alias/scanner.py b/test/Alias/scanner.py index fc78546..d20a729 100644 --- a/test/Alias/scanner.py +++ b/test/Alias/scanner.py @@ -52,7 +52,7 @@ test.write('file.x', "file.x\n") test.run() -test.fail_test(test.read('file.c') != "file.x\n") +test.fail_test(test.read('file.c') != b"file.x\n") test.pass_test() -- cgit v0.12