diff options
Diffstat (limited to 'tests/test_postgresql.py')
-rw-r--r-- | tests/test_postgresql.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_postgresql.py b/tests/test_postgresql.py index 047ac92..9c53035 100644 --- a/tests/test_postgresql.py +++ b/tests/test_postgresql.py @@ -197,9 +197,10 @@ class PostgresqlDefaultCompareTest(TestCase): cols = insp.get_columns(t1.name) ctx = self.autogen_context['context'] return ctx.impl.compare_server_default( - cols[0], + None, col, - rendered) + rendered, + cols[0]['default']) def test_compare_current_timestamp(self): self._compare_default_roundtrip( |