From: Mike Bayer Date: Tue, 20 Sep 2005 05:09:44 +0000 (+0000) Subject: dependency sort thing getting out of hand X-Git-Tag: rel_0_1_0~668 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8d647c988b88d8a7fd5acc08232ffc880d92444;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git dependency sort thing getting out of hand --- 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):