From 1bb9c99ea9f3e36e5d4a9f1d4f21f1d0a252db4a Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 24 May 2015 09:49:14 -0400 Subject: [PATCH] - liberalize list.remove() regexp as recent Pypy versions format this message differently than cpython --- test/orm/test_attributes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/orm/test_attributes.py b/test/orm/test_attributes.py index 96c6451d0f..80d8cdc04b 100644 --- a/test/orm/test_attributes.py +++ b/test/orm/test_attributes.py @@ -123,7 +123,7 @@ class AttributeImplAPITest(fixtures.MappedTest): assert_raises_message( ValueError, - r"list.remove\(x\): x not in list", + r"list.remove\(.*?\): .* not in list", A.b.impl.remove, attributes.instance_state(a1), attributes.instance_dict(a1), b2, None -- 2.47.3