]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
dependency sort thing getting out of hand
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 20 Sep 2005 05:09:44 +0000 (05:09 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 20 Sep 2005 05:09:44 +0000 (05:09 +0000)
test/testbase.py

index 58bf2725327b985d81efbf9860ae26bcacccca90..0ab58e8b7217f6a26bfe4df726cba98182dd44b7 100644 (file)
@@ -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):