From ec6839553500a0fc6044c83d2a86a0399032c2c6 Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Tue, 6 Aug 2024 18:04:53 +0200 Subject: [PATCH] tests(go): fix test case --- go/compiler_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/compiler_test.go b/go/compiler_test.go index 9ffe0c295..e1fcfe110 100644 --- a/go/compiler_test.go +++ b/go/compiler_test.go @@ -107,7 +107,7 @@ func TestVariables(t *testing.T) { func TestError(t *testing.T) { _, err := Compile("rule test { condition: foo }") - assert.EqualError(t, err, `error[E107]: unknown identifier `+"`foo`"+` + assert.EqualError(t, err, `error[E009]: unknown identifier `+"`foo`"+` --> line:1:24 | 1 | rule test { condition: foo }