From 953d72df6b2d5c6f3c01decb3647ac25da9bed6d Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 14 May 2011 13:54:00 -0400 Subject: [PATCH] py3k test fix --- test/ext/test_mutable.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/ext/test_mutable.py b/test/ext/test_mutable.py index ceff0d6499..494e463471 100644 --- a/test/ext/test_mutable.py +++ b/test/ext/test_mutable.py @@ -70,8 +70,7 @@ class _MutableDictTestBase(object): def test_coerce_raise(self): assert_raises_message( ValueError, - "Attribute 'data' does not accept objects of " - "type ", + "Attribute 'data' does not accept objects of type", Foo, data=set([1,2,3]) ) -- 2.39.5