From 711f77e3edcfae26ee44bf405a82a6c9913ea13a Mon Sep 17 00:00:00 2001 From: thinkerou Date: Wed, 12 Dec 2018 18:59:19 +0800 Subject: [PATCH] fix bug --- githubapi_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/githubapi_test.go b/githubapi_test.go index 1cc79c9f..30a59299 100644 --- a/githubapi_test.go +++ b/githubapi_test.go @@ -334,7 +334,7 @@ func TestBindUriError(t *testing.T) { router := Default() type Member struct { - number string `uri:"num" binding:"required,uuid"` + Number string `uri:"num" binding:"required,uuid"` } router.Handle("GET", "/new/rest/:num", func(c *Context) { var m Member