diff --git a/list/list_test.go b/list/list_test.go index ce4ddd6..1a8318b 100644 --- a/list/list_test.go +++ b/list/list_test.go @@ -56,7 +56,7 @@ func TestStringifyIntList(t *testing.T) { myList := intListGen().Draw(t, "myList") s := myList.String() r := regexp.MustCompile(`^\([\d\s-]*\)$`) - assert.Equal(t, true, r.Match([]byte(s)), s + " looks like a string") + assert.Equal(t, true, r.Match([]byte(s)), s + " looks like a stringfied list") if !myList.IsEmpty() { assert.Equal(t, myList.Len(), strings.Count(s, " ")+1, "number of spaces in string should match count of elements") } else {