From 4cfeb1946edf2fa310ae72f3eee5ffaa57e5981a Mon Sep 17 00:00:00 2001 From: Marc Vertes Date: Tue, 29 Sep 2020 15:22:04 +0200 Subject: [PATCH] fix: concurrent eval test --- interp/interp_eval_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interp/interp_eval_test.go b/interp/interp_eval_test.go index e65cef4e..1b1e0da2 100644 --- a/interp/interp_eval_test.go +++ b/interp/interp_eval_test.go @@ -956,6 +956,9 @@ func TestConcurrentEvals(t *testing.T) { hello1 = true case "hello world2": hello2 = true + case "hello world1hello world2", "hello world2hello world1": + hello1 = true + hello2 = true default: c <- fmt.Errorf("unexpected output: %v", l) return