diff options
Diffstat (limited to 'test/sql/test_constraints.py')
-rw-r--r-- | test/sql/test_constraints.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_constraints.py b/test/sql/test_constraints.py index 4ad52604d..55dcd3484 100644 --- a/test/sql/test_constraints.py +++ b/test/sql/test_constraints.py @@ -319,7 +319,7 @@ class ConstraintCompilationTest(TestBase, AssertsCompiledSQL): constraint = CheckConstraint('a < b',name="my_test_constraint", deferrable=True,initially='DEFERRED', table=t) self.assert_compile( schema.AddConstraint(constraint), - "ALTER TABLE tbl ADD CONSTRAINT my_test_constraint CHECK (a < b) DEFERRABLE INITIALLY DEFERRED" + "ALTER TABLE tbl ADD CONSTRAINT my_test_constraint CHECK (a < b) DEFERRABLE INITIALLY DEFERRED" ) self.assert_compile( |