From 2050019ee9be250a875fab972c9fe6d833ff4244 Mon Sep 17 00:00:00 2001 From: Mike Perrone Date: Thu, 18 Jan 2024 12:51:41 -0800 Subject: [PATCH] remove default none from test expectations --- tests/integration/clients/test_postgresql.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/clients/test_postgresql.py b/tests/integration/clients/test_postgresql.py index ab373d9..881a887 100644 --- a/tests/integration/clients/test_postgresql.py +++ b/tests/integration/clients/test_postgresql.py @@ -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"]), ], ), ] @@ -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"]), ], ), ]