Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
americast committed Oct 6, 2023
1 parent 3ae7cef commit bf98b5b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test/unit_tests/parser/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,11 +245,9 @@ def test_create_table_statement(self):
True,
[
ColumnDefinition("Frame_ID", ColumnType.INTEGER, None, (), unique_cci),
ColumnDefinition("Frame_Data", ColumnType.TEXT, None, (), expected_cci),
ColumnDefinition(
"Frame_Data", ColumnType.TEXT, None, (10,), expected_cci
),
ColumnDefinition(
"Frame_Value", ColumnType.FLOAT, None, (1000, 201), expected_cci
"Frame_Value", ColumnType.FLOAT, None, (), expected_cci
),
ColumnDefinition(
"Frame_Array",
Expand Down

0 comments on commit bf98b5b

Please sign in to comment.