From fd9055fd116f5c36247a8e913f0f132e361072e6 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 31 May 2014 14:51:05 -0700 Subject: [PATCH] fix test on Python 3.2 --- testing/test_assertion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/test_assertion.py b/testing/test_assertion.py index 73ee478d3..f217a1de4 100644 --- a/testing/test_assertion.py +++ b/testing/test_assertion.py @@ -206,7 +206,7 @@ class TestFormatExplanation: # Issue 453, for the bug this would raise IndexError testdir.makepyfile(""" def test_foo(): - assert u'\\n}' == u'' + assert '\\n}' == '' """) result = testdir.runpytest() assert result.ret == 1