From 021a9ef7e084fd0d1d4bc3378ed94b1846d9787a Mon Sep 17 00:00:00 2001 From: Damian Owsianny Date: Wed, 25 Oct 2023 16:31:41 +0200 Subject: [PATCH] Revert changes in test_constraints.py --- tests/functional/adapter/constraints/test_constraints.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/functional/adapter/constraints/test_constraints.py b/tests/functional/adapter/constraints/test_constraints.py index 0e432940..d6326c8b 100644 --- a/tests/functional/adapter/constraints/test_constraints.py +++ b/tests/functional/adapter/constraints/test_constraints.py @@ -35,7 +35,7 @@ _expected_sql_trino = """ create table ( - "id" int not null, + "id" integer not null, color varchar, date_day varchar ) ; @@ -206,7 +206,7 @@ def models(self): def expected_sql(self): return """ create table ( - "id" int not null, + "id" integer not null, color varchar, date_day varchar ) ; @@ -240,7 +240,7 @@ def models(self): def expected_sql(self): return """ create table ( - id int not null, + id integer not null, "from" varchar not null, date_day varchar ) ;