From 1a5e65c14f11ea2d88e2a00cea6cbd82f371e385 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 31 Mar 2006 02:25:59 +0000 Subject: =?UTF-8?q?Jonas=20Borgstr=C3=B6m's=20fantastic=20SelectRsults=20p?= =?UTF-8?q?atch=20that=20adds=20dynamic=20list=20argument=20support=20to?= =?UTF-8?q?=20the=20mapper.select()=20methd.=20=20associated=20unit=20test?= =?UTF-8?q?=20tweaks=20and=20mapper=20integration.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/testbase.py | 1 + 1 file changed, 1 insertion(+) (limited to 'test/testbase.py') diff --git a/test/testbase.py b/test/testbase.py index f3dfac15b..1578be5a0 100644 --- a/test/testbase.py +++ b/test/testbase.py @@ -74,6 +74,7 @@ class AssertMixin(PersistTest): """given a list-based structure of keys/properties which represent information within an object structure, and a list of actual objects, asserts that the list of objects corresponds to the structure.""" def assert_result(self, result, class_, *objects): + result = list(result) if echo: print repr(result) self.assert_list(result, class_, objects) -- cgit v1.2.1