about summary refs log tree commit diff
path: root/router_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'router_test.go')
-rw-r--r--router_test.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/router_test.go b/router_test.go
index 71fdcaf..167468f 100644
--- a/router_test.go
+++ b/router_test.go
@@ -7,9 +7,8 @@ import (
 	"testing"
 )
 
-func testRouter(req *request.Request) (request.Response, error) {
-	resp := request.Response{}
-	return resp, nil
+func testRouter(req *request.Request, resp *request.Response) error {
+	return nil
 }
 
 func testBasic(t *testing.T) {