From 6910b511e66f78fca90e4dd994958bb67c615e13 Mon Sep 17 00:00:00 2001 From: xpetit <32063953+xpetit@users.noreply.github.com> Date: Mon, 6 Jul 2020 15:04:02 +0200 Subject: [PATCH] Fix test --- go/tests/func/strlen_test/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/tests/func/strlen_test/main.go b/go/tests/func/strlen_test/main.go index dfc75884..710dbcb2 100644 --- a/go/tests/func/strlen_test/main.go +++ b/go/tests/func/strlen_test/main.go @@ -23,7 +23,7 @@ func main() { table = append(table, randomStringCharset) for _, s := range table { - lib.Challenge("StrLen", student.strLen, StrLen, s) + lib.Challenge("StrLen", student.StrLen, strLen, s) } }