Skip to content

Commit

Permalink
#234 Fixed incorrect test case.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericzhang6222 committed May 22, 2020
1 parent 40175e8 commit 3741ef4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions syntax/std_seq_contains_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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'])`)
Expand Down

0 comments on commit 3741ef4

Please sign in to comment.