From 40fed9b16d721806a6f1ed3eb768fc6399fb6c52 Mon Sep 17 00:00:00 2001 From: Xavier Petit <32063953+xpetit@users.noreply.github.com> Date: Mon, 29 Jun 2020 12:12:18 +0200 Subject: [PATCH] Fix --- go/tests/func/strlen_test/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/go/tests/func/strlen_test/main.go b/go/tests/func/strlen_test/main.go index b4ea6ee6..dfc75884 100644 --- a/go/tests/func/strlen_test/main.go +++ b/go/tests/func/strlen_test/main.go @@ -23,8 +23,8 @@ func main() { table = append(table, randomStringCharset) for _, s := range table { - lib.Challenge("StrLen", strLen, student.StrLen, s) + lib.Challenge("StrLen", student.strLen, StrLen, s) } } -// TODO: refactor, simplify, no need for specifiy charset : check lib +// TODO: refactor, simplify, no need for specific charset : check lib