Skip to content

Commit

Permalink
remove min and max from instantiation
Browse files Browse the repository at this point in the history
  • Loading branch information
mfleader committed Jan 15, 2024
1 parent 3f660d9 commit 7564b29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion schema/list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ func TestList_UnSerialize_Reversible(t *testing.T) {
nil,
nil,
),
schema.IntPointer(3),
nil,
nil,
)
serializableInput := []any{"foo", "bar", "baz"}
Expand Down
2 changes: 1 addition & 1 deletion schema/map_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7564b29

Please sign in to comment.