From ddcdfa54aabb661175f7bf412c6d3055c8f5755c Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 13 Dec 2017 21:12:56 +0100 Subject: [PATCH] Fix test for invalid guiprocess encoding --- tests/unit/misc/test_guiprocess.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit/misc/test_guiprocess.py b/tests/unit/misc/test_guiprocess.py index b74b0383a..958524d42 100644 --- a/tests/unit/misc/test_guiprocess.py +++ b/tests/unit/misc/test_guiprocess.py @@ -69,7 +69,8 @@ def test_stdout_malformed_utf8(proc, qtbot, message_mock, py_proc): order='strict'): argv = py_proc(r""" import sys - sys.stdout.buffer.write(b"A\x80B") + # Using \x81 because it's invalid in UTF-8 and CP1252 + sys.stdout.buffer.write(b"A\x81B") sys.exit(0) """) proc.start(*argv)