Skip to content

Commit

Permalink
Fix wrong name in test
Browse files Browse the repository at this point in the history
  • Loading branch information
zbyju committed May 9, 2024
1 parent 4b470a6 commit 24b573d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/babybox-service/utils/slug_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 24b573d

Please sign in to comment.