diff --git a/internal/api/user_test.go b/internal/api/user_test.go index f9d7097..0c26e2b 100644 --- a/internal/api/user_test.go +++ b/internal/api/user_test.go @@ -224,13 +224,3 @@ func getAdmin() *model.User { } return nil } - -func countAdmins() uint64 { - count := uint64(0) - for _, user := range TestUsers { - if user.IsAdmin { - count += 1 - } - } - return count -}