From 66677e86ecbdfae2feb5aa83432d8c8686aa47b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=81=A3?= <⁣> Date: Wed, 27 May 2020 19:44:07 +0200 Subject: [PATCH] Fix syntax error --- go/tests/func/advancedsortwordarr_test/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/tests/func/advancedsortwordarr_test/main.go b/go/tests/func/advancedsortwordarr_test/main.go index 41eae7a9c..c8e7201a5 100644 --- a/go/tests/func/advancedsortwordarr_test/main.go +++ b/go/tests/func/advancedsortwordarr_test/main.go @@ -19,7 +19,7 @@ func advancedSortWordArr(a []string, f func(a, b string) int) { func main() { table := [][]string{{"a", "A", "1", "b", "B", "2", "c", "C", "3"}} - table = append(table, lib.MultMultRandWords()...) + table = append(table, lib.MultRandWords()) for _, org := range table { // copy for using the solution function