From f8d647c988b88d8a7fd5acc08232ffc880d92444 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 20 Sep 2005 05:09:44 +0000 Subject: [PATCH] dependency sort thing getting out of hand --- test/testbase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testbase.py b/test/testbase.py index 58bf272532..0ab58e8b72 100644 --- a/test/testbase.py +++ b/test/testbase.py @@ -11,7 +11,7 @@ class AssertMixin(PersistTest): print repr(result) self.assert_list(result, class_, objects) def assert_list(self, result, class_, list): - self.assert_(len(result) == len(list), "result list is not the same size as test list") + self.assert_(len(result) == len(list), "result list is not the same size as test list, for class " + class_.__name__) for i in range(0, len(list)): self.assert_row(class_, result[i], list[i]) def assert_row(self, class_, rowobj, desc): -- 2.47.2