diff options
author | Jane Doe <jdoe@example.com> | 2017-05-28 22:24:38 (GMT) |
---|---|---|
committer | Jane Doe <jdoe@example.com> | 2017-05-28 22:24:38 (GMT) |
commit | 351f3e1e53a9a66e59bae23f560a7a6ab49845cd (patch) | |
tree | cf203b80e9d30e6ea8b7a2e3f256aa28237289d6 /test/Progress | |
parent | 9b86fdf813d6b2e7218084657db8bc4dcf787fb5 (diff) | |
download | SCons-351f3e1e53a9a66e59bae23f560a7a6ab49845cd.zip SCons-351f3e1e53a9a66e59bae23f560a7a6ab49845cd.tar.gz SCons-351f3e1e53a9a66e59bae23f560a7a6ab49845cd.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/Progress')
-rw-r--r-- | test/Progress/spinner.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/Progress/spinner.py b/test/Progress/spinner.py index 1af1e76..ff88841 100644 --- a/test/Progress/spinner.py +++ b/test/Progress/spinner.py @@ -58,11 +58,6 @@ expect ="""\ /\r-\rCopy("S4.out", "S4.in") \\\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() |