diff options
Diffstat (limited to 'internal/rosa/azalea/evaluate_test.go')
| -rw-r--r-- | internal/rosa/azalea/evaluate_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/rosa/azalea/evaluate_test.go b/internal/rosa/azalea/evaluate_test.go index 7625db62..801b07a3 100644 --- a/internal/rosa/azalea/evaluate_test.go +++ b/internal/rosa/azalea/evaluate_test.go @@ -85,7 +85,7 @@ func TestEvaluate(t *testing.T) { Err: UndefinedError("v"), }}, - {"apply bound undefined", `f { _v* = "\x00"; v = _v; }`, makeStackCheck(func( + {"apply bound undefined", `f { _v# = "\x00"; v = _v; }`, makeStackCheck(func( args FArgs, ) (v any, err error) { v = "\xfd" @@ -124,7 +124,7 @@ func TestEvaluate(t *testing.T) { Err: ErrInvalidSpecial, }}, - {"bound inputs", `package name { inputs* = []; }`, nil, "", EvaluationError{ + {"bound inputs", `package name { inputs# = []; }`, nil, "", EvaluationError{ Expr: Func{ Ident: Ident("name"), Package: true, @@ -136,7 +136,7 @@ func TestEvaluate(t *testing.T) { Err: ErrInvalidSpecial, }}, - {"bound runtime", `package name { runtime* = []; }`, nil, "", EvaluationError{ + {"bound runtime", `package name { runtime# = []; }`, nil, "", EvaluationError{ Expr: Func{ Ident: Ident("name"), Package: true, |
