From 0d3807ad0940513c51a86a93079b24d9b8696a76 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Mon, 29 Jul 2019 20:15:53 -0400 Subject: [PATCH] lang, test: Fix copy paste error with log message This changes this to the correct error message. --- lang/interpret_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/interpret_test.go b/lang/interpret_test.go index 1db46cd7..6ad9658a 100644 --- a/lang/interpret_test.go +++ b/lang/interpret_test.go @@ -1283,7 +1283,7 @@ func TestAstFunc2(t *testing.T) { } if fail2 && err == nil { t.Errorf("test #%d: FAIL", index) - t.Errorf("test #%d: interpolation passed, expected fail", index) + t.Errorf("test #%d: set scope passed, expected fail", index) return }