From ccaf231b81198d02b4d5695c0ce1096bdb771dd2 Mon Sep 17 00:00:00 2001 From: MengZeLee Date: Sun, 22 Mar 2020 00:47:43 +0800 Subject: [PATCH] fix typo fix typo --- handler/api/acl/check_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler/api/acl/check_test.go b/handler/api/acl/check_test.go index 3221641c..02e396f4 100644 --- a/handler/api/acl/check_test.go +++ b/handler/api/acl/check_test.go @@ -410,7 +410,7 @@ func TestCheckWriteAccess_InactiveUser(t *testing.T) { router.Route("/api/repos/{owner}/{name}", func(router chi.Router) { router.Use(CheckWriteAccess()) router.Get("/", func(w http.ResponseWriter, r *http.Request) { - t.Error("should not invoke hanlder") + t.Error("should not invoke handler") }) })