diff options
Diffstat (limited to 'driver/syntax_error_test.go')
-rw-r--r-- | driver/syntax_error_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/syntax_error_test.go b/driver/syntax_error_test.go index f68f595..ada1fb0 100644 --- a/driver/syntax_error_test.go +++ b/driver/syntax_error_test.go @@ -242,7 +242,7 @@ foo }, }, { - caption: "when an anonymous symbol is expected, an expected symbol list contains an alias of the anonymous symbol", + caption: "when an anonymous symbol is expected, an expected symbol list contains an auto-generated name with the prefix `x_`", specSrc: ` #name test; @@ -256,7 +256,7 @@ foo src: `foobaz`, cause: `baz`, expected: []string{ - "bar", + "x_1", }, }, } |