aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/ast/parser_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/ast/parser_test.go')
-rw-r--r--pkg/ast/parser_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/ast/parser_test.go b/pkg/ast/parser_test.go
index bc66ed4be..199bd7490 100644
--- a/pkg/ast/parser_test.go
+++ b/pkg/ast/parser_test.go
@@ -97,24 +97,24 @@ func TestParse(t *testing.T) {
var parseTests = []struct {
name string
input string
- result []interface{}
+ result []any
}{
{
"empty",
``,
- []interface{}{},
+ []any{},
},
{
"new-line",
`
`,
- []interface{}{},
+ []any{},
},
{
"nil",
"\x00",
- []interface{}{},
+ []any{},
},
}