summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJane Doe <jdoe@example.com>2017-05-28 22:23:56 (GMT)
committerJane Doe <jdoe@example.com>2017-05-28 22:23:56 (GMT)
commit9b86fdf813d6b2e7218084657db8bc4dcf787fb5 (patch)
tree4656942e90f51b3950b156b784994d2fb0682036 /test
parent20a45727ec1023102f376a5c71d838a3ec8a9b1c (diff)
downloadSCons-9b86fdf813d6b2e7218084657db8bc4dcf787fb5.zip
SCons-9b86fdf813d6b2e7218084657db8bc4dcf787fb5.tar.gz
SCons-9b86fdf813d6b2e7218084657db8bc4dcf787fb5.tar.bz2
PY2/3 change expected string from bytestream to normal string since we changed the return values from popen in testcmd
Diffstat (limited to 'test')
-rw-r--r--test/Progress/TARGET.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/Progress/TARGET.py b/test/Progress/TARGET.py
index b2693e7..bbe2538 100644
--- a/test/Progress/TARGET.py
+++ b/test/Progress/TARGET.py
@@ -57,11 +57,6 @@ S1.in\r \rS1.out\rCopy("S1.out", "S1.in")
\rS4.in\r \rS4.out\rCopy("S4.out", "S4.in")
\rSConstruct\r \r.\r"""
-if os.linesep != '\n':
- expect = expect.replace('\n', os.linesep)
-
-expect = bytearray(expect, 'utf-8')
-
test.run(arguments = '-Q .', stdout=expect)
test.pass_test()