From 24b573d4e4abe1e10b1c3f961162e164798f66e4 Mon Sep 17 00:00:00 2001 From: zbyju Date: Thu, 9 May 2024 11:00:09 +0200 Subject: [PATCH] Fix wrong name in test --- apps/babybox-service/utils/slug_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/babybox-service/utils/slug_test.go b/apps/babybox-service/utils/slug_test.go index 92ccdeb..417b40f 100644 --- a/apps/babybox-service/utils/slug_test.go +++ b/apps/babybox-service/utils/slug_test.go @@ -20,7 +20,7 @@ func TestToSlug(t *testing.T) { for _, c := range cases { t.Run(c.name, func(t *testing.T) { - got := toSlug(c.input) + got := ToSlug(c.input) if got != c.expected { t.Errorf("toSlug(%q) == %q, want %q", c.input, got, c.expected) }