Skip to content

Commit

Permalink
Revert changes in test_constraints.py
Browse files Browse the repository at this point in the history
  • Loading branch information
damian3031 committed Nov 2, 2023
1 parent 39637c1 commit 021a9ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/functional/adapter/constraints/test_constraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

_expected_sql_trino = """
create table <model_identifier> (
"id" int not null,
"id" integer not null,
color varchar,
date_day varchar
) ;
Expand Down Expand Up @@ -206,7 +206,7 @@ def models(self):
def expected_sql(self):
return """
create table <model_identifier> (
"id" int not null,
"id" integer not null,
color varchar,
date_day varchar
) ;
Expand Down Expand Up @@ -240,7 +240,7 @@ def models(self):
def expected_sql(self):
return """
create table <model_identifier> (
id int not null,
id integer not null,
"from" varchar not null,
date_day varchar
) ;
Expand Down

0 comments on commit 021a9ef

Please sign in to comment.