From 3741ef45f4ca1696def48ac4f9474cb32eb792f1 Mon Sep 17 00:00:00 2001 From: Zhang Eric Date: Fri, 22 May 2020 11:40:50 +0800 Subject: [PATCH] #234 Fixed incorrect test case. --- syntax/std_seq_contains_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syntax/std_seq_contains_test.go b/syntax/std_seq_contains_test.go index 7bbe2781..b4f8a620 100644 --- a/syntax/std_seq_contains_test.go +++ b/syntax/std_seq_contains_test.go @@ -22,8 +22,8 @@ func TestStrContains(t *testing.T) { func TestArrayContains(t *testing.T) { t.Parallel() AssertCodesEvalToSameValue(t, `true`, `//seq.contains(['A'],['A', 'D','E'])`) - AssertCodesEvalToSameValue(t, `true`, `//seq.contains(['E'],['A',C','E'])`) - AssertCodesEvalToSameValue(t, `true`, `//seq.contains(['C'],[B','C','D'])`) + AssertCodesEvalToSameValue(t, `true`, `//seq.contains(['E'],['A','C','E'])`) + AssertCodesEvalToSameValue(t, `true`, `//seq.contains(['C'],['B','C','D'])`) AssertCodesEvalToSameValue(t, `true`, `//seq.contains(['L','M','N'],['L','M','N','D','E'])`) AssertCodesEvalToSameValue(t, `true`, `//seq.contains(['B','C'],['T','B','C','X','Y'])`)