From dad3e773198a95e49a0b5a1e805bd0318c508996 Mon Sep 17 00:00:00 2001 From: victor Date: Sat, 30 Jun 2018 18:57:24 +0200 Subject: [PATCH] Improve test readability. --- testing/logging/test_reporting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/logging/test_reporting.py b/testing/logging/test_reporting.py index 925821d2e..07c092191 100644 --- a/testing/logging/test_reporting.py +++ b/testing/logging/test_reporting.py @@ -861,7 +861,7 @@ def test_log_file_unicode(testdir): with open(log_file, encoding="utf-8") as rfh: contents = rfh.read() assert "Normal message" in contents - assert six.unichr(0x251c) in contents + assert u"├" in contents assert "Another normal message" in contents