Skip to content

Commit

Permalink
Fix default parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
vearutop committed Mar 6, 2024
1 parent d76b38e commit b61051e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reflect_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1927,7 +1927,7 @@ const (
)

func (d *Discover) Enum() []interface{} {
return []any{DiscoverAll, DiscoverNone}
return []interface{}{DiscoverAll, DiscoverNone}
}

func TestReflector_Reflect_ptrDefault(t *testing.T) {
Expand Down

0 comments on commit b61051e

Please sign in to comment.