From 0c9e3aa20ba045684ac02365c995472e73485398 Mon Sep 17 00:00:00 2001 From: ajet Date: Tue, 4 Nov 2025 18:11:25 -1000 Subject: [PATCH] fix assert comment --- list/list_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {