summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-02-28 16:50:09 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-02-28 16:50:09 (GMT)
commite6084586c573b2672245496740793c16ea309728 (patch)
treea4ce316a841774d197bded57c5b092cda6ab1a26
parent743c37452359941e9358f8b08997a9e45524bd3a (diff)
downloadSCons-e6084586c573b2672245496740793c16ea309728.zip
SCons-e6084586c573b2672245496740793c16ea309728.tar.gz
SCons-e6084586c573b2672245496740793c16ea309728.tar.bz2
py2/3 fix
-rw-r--r--test/Alias/scanner.py2
1 files changed, 1 insertions, 1 deletions
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()