Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
julienschmidt committed Jan 4, 2017
1 parent 5dd70ee commit 8a45e95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions router_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ func TestRouter(t *testing.T) {
}

type handlerStruct struct {
handeled *bool
handled *bool
}

func (h handlerStruct) ServeHTTP(w http.ResponseWriter, r *http.Request) {
*h.handeled = true
*h.handled = true
}

func TestRouterAPI(t *testing.T) {
Expand Down

0 comments on commit 8a45e95

Please sign in to comment.