Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnp committed Jun 9, 2021
1 parent 7422f78 commit 7c8ed6f
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions router_test.go
Expand Up @@ -83,12 +83,9 @@ func TestRouterAPI(t *testing.T) {
router := New()
router.GET("/GET", []Handle{})
router.GET("/GET",
func(w http.ResponseWriter, r *http.Request, _ Params) {
get = true
},
func(w http.ResponseWriter, r *http.Request, _ Params) {
func(w http.ResponseWriter, r *http.Request, _ Params) {
get = true
},
},nil,
)
router.GET("/GET", func(w http.ResponseWriter, r *http.Request, _ Params) {
get = true
Expand Down

0 comments on commit 7c8ed6f

Please sign in to comment.