Skip to content

Commit

Permalink
RSDK-7975 Fix TestStringSet (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjirewis authored Jun 20, 2024
1 parent 37d6ad5 commit 4cbcae5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion string_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ func TestStringSet(t *testing.T) {

listView := ss.ToList()
test.That(t, len(listView), test.ShouldEqual, 2)
test.That(t, listView, test.ShouldResemble, []string{"hello", "bye"})
test.That(t, listView, test.ShouldContain, "hello")
test.That(t, listView, test.ShouldContain, "bye")
}

func TestStringSliceRemove(t *testing.T) {
Expand Down

0 comments on commit 4cbcae5

Please sign in to comment.