From d2ef5eee64a5f52cd49cc45bf2cf46b4728ed031 Mon Sep 17 00:00:00 2001 From: Christopher LaPointe Date: Sat, 1 Apr 2023 12:15:35 -0400 Subject: [PATCH] And fix a broken test because of the bug-fix --- pkg/expressions/stdlib/funcs_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/expressions/stdlib/funcs_test.go b/pkg/expressions/stdlib/funcs_test.go index 9fa70b0..c45d32c 100644 --- a/pkg/expressions/stdlib/funcs_test.go +++ b/pkg/expressions/stdlib/funcs_test.go @@ -96,7 +96,7 @@ func TestUnlessStatement(t *testing.T) { func TestComparisonEquality(t *testing.T) { testExpression(t, mockContext("123", "1234"), "{eq {0} 123} {eq {0} 1234} {not {eq {0} abc}} {neq 1 2} {neq 1 1}", - "123 1 1 ") + "1 1 1 ") } func TestComparisonExpression(t *testing.T) {