Skip to content

Commit

Permalink
remove default none from test expectations
Browse files Browse the repository at this point in the history
  • Loading branch information
mjperrone committed Jan 18, 2024
1 parent aaf306e commit 2050019
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/clients/test_postgresql.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def test_struct_method_arrays_no_enforce_dimensions(self):
name="test_enum_mood",
types=[
NullType(),
EnumType(default=None, symbols=["sad", "ok", "happy"]),
EnumType(symbols=["sad", "ok", "happy"]),
],
),
]
Expand Down Expand Up @@ -475,7 +475,7 @@ def test_struct_method_arrays_enforce_dimensions(self):
name="test_enum_mood",
types=[
NullType(),
EnumType(default=None, symbols=["sad", "ok", "happy"]),
EnumType(symbols=["sad", "ok", "happy"]),
],
),
]
Expand Down

0 comments on commit 2050019

Please sign in to comment.