From 9f3f2accc8e9690ce2512ece0a08be673ab040d6 Mon Sep 17 00:00:00 2001 From: Jason Kirtland Date: Tue, 11 Mar 2008 23:11:06 +0000 Subject: [PATCH] - increased assert_tabels_equal failure verbosity --- test/testlib/testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testlib/testing.py b/test/testlib/testing.py index 1e24108dd4..f843265086 100644 --- a/test/testlib/testing.py +++ b/test/testlib/testing.py @@ -519,7 +519,7 @@ class ComparesTables(object): if c.default: assert isinstance(reflected_c.default, schema.PassiveDefault) elif not c.primary_key or not against('postgres'): - assert reflected_c.default is None + assert reflected_c.default is None, reflected_c.default assert len(table.primary_key) == len(reflected_table.primary_key) for c in table.primary_key: -- 2.47.3