From 351f3e1e53a9a66e59bae23f560a7a6ab49845cd Mon Sep 17 00:00:00 2001 From: Jane Doe Date: Sun, 28 May 2017 15:24:38 -0700 Subject: PY2/3 change expected string from bytestream to normal string since we changed the return values from popen in testcmd --- test/Progress/spinner.py | 5 ----- 1 file changed, 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() -- cgit v0.12