Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolagigic committed Mar 9, 2021
1 parent 8430ef3 commit 0189072
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/sqla_models_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ def test_db_column_types(self):
"TEXT": GenericDataType.STRING,
# "NTEXT": GenericDataType.STRING,
# numeric
"INT": GenericDataType.NUMERIC,
"INTEGER": GenericDataType.NUMERIC,
"BIGINT": GenericDataType.NUMERIC,
"FLOAT": GenericDataType.NUMERIC,
# "FLOAT": GenericDataType.NUMERIC,
"DECIMAL": GenericDataType.NUMERIC,
"MONEY": GenericDataType.NUMERIC,
# "MONEY": GenericDataType.NUMERIC,
# temporal
"DATE": GenericDataType.TEMPORAL,
"DATETIME": GenericDataType.TEMPORAL,
Expand Down

0 comments on commit 0189072

Please sign in to comment.