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 2c05237
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit_tests/parser/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,10 @@ def test_create_table_statement(self):
[
ColumnDefinition("Frame_ID", ColumnType.INTEGER, None, (), unique_cci),
ColumnDefinition(
"Frame_Data", ColumnType.TEXT, None, (10,), expected_cci
"Frame_Data", ColumnType.TEXT, None, (), 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 2c05237

Please sign in to comment.