fix test and build

This commit is contained in:
Javier Provecho Fernandez
2016-04-15 01:35:22 +02:00
parent 9e930b9bdd
commit 3c3526f1f1
3 changed files with 11 additions and 9 deletions
+2 -1
View File
@@ -3,6 +3,7 @@ package gin
import (
"html/template"
"net/http"
"os"
"testing"
)
@@ -36,7 +37,7 @@ func BenchmarkManyHandlers(B *testing.B) {
}
func Benchmark5Params(B *testing.B) {
DefaultWriter = newMockWriter()
DefaultWriter = os.Stdout
router := New()
router.Use(func(c *Context) {})
router.GET("/param/:param1/:params2/:param3/:param4/:param5", func(c *Context) {})