diff --git a/schema/list_test.go b/schema/list_test.go index e6ef71f..088ccba 100644 --- a/schema/list_test.go +++ b/schema/list_test.go @@ -189,7 +189,7 @@ func TestList_UnSerialize_Reversible(t *testing.T) { nil, nil, ), - schema.IntPointer(3), + nil, nil, ) serializableInput := []any{"foo", "bar", "baz"} diff --git a/schema/map_test.go b/schema/map_test.go index 1395b2b..226372c 100644 --- a/schema/map_test.go +++ b/schema/map_test.go @@ -350,7 +350,7 @@ func TestMap_UnSerialize_Reversible(t *testing.T) { schema.NewStringSchema(nil, nil, nil), schema.NewStringSchema(nil, nil, nil), nil, - schema.IntPointer(3), + nil, ) serializableInput := map[any]any{"foo": "foo", "bar": "bar", "baz": "baz"} unserialized, err := mapType.Unserialize(serializableInput)