From d944de715a184060e639af5ce2ec884eaf35447a Mon Sep 17 00:00:00 2001 From: thinkerou Date: Wed, 12 Dec 2018 19:37:37 +0800 Subject: [PATCH] fix code style --- githubapi_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/githubapi_test.go b/githubapi_test.go index 30a59299..5253425a 100644 --- a/githubapi_test.go +++ b/githubapi_test.go @@ -313,7 +313,7 @@ func TestBindUri(t *testing.T) { type Person struct { Name string `uri:"name" binding:"required"` - Id string `uri:"id" binding:"required"` + Id string `uri:"id" binding:"required"` } router.Handle("GET", "/rest/:name/:id", func(c *Context) { var person Person