diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-02-28 16:50:09 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-02-28 16:50:09 (GMT) |
commit | e6084586c573b2672245496740793c16ea309728 (patch) | |
tree | a4ce316a841774d197bded57c5b092cda6ab1a26 /test/Alias | |
parent | 743c37452359941e9358f8b08997a9e45524bd3a (diff) | |
download | SCons-e6084586c573b2672245496740793c16ea309728.zip SCons-e6084586c573b2672245496740793c16ea309728.tar.gz SCons-e6084586c573b2672245496740793c16ea309728.tar.bz2 |
py2/3 fix
Diffstat (limited to 'test/Alias')
-rw-r--r-- | test/Alias/scanner.py | 2 |
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() |