about summary refs log tree commit diff
path: root/router_benchmark_test.go
diff options
context:
space:
mode:
authorFranck Cuny <franck@lumberjaph.net>2013-04-27 10:03:43 -0700
committerFranck Cuny <franck@lumberjaph.net>2013-04-27 10:03:43 -0700
commit89c722d8cb9ae27a1c701ced674df8795c5bd4fe (patch)
treed9ecd9133b4adae9ef635188820b8a9431e538a5 /router_benchmark_test.go
parentRename a few files. (diff)
downloadpath-router-89c722d8cb9ae27a1c701ced674df8795c5bd4fe.tar.gz
Rename all instances of Dispatcher to Router.
Diffstat (limited to 'router_benchmark_test.go')
-rw-r--r--router_benchmark_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/router_benchmark_test.go b/router_benchmark_test.go
index 6c328ce..a5d334a 100644
--- a/router_benchmark_test.go
+++ b/router_benchmark_test.go
@@ -14,7 +14,7 @@ func testSimpleRoute(req *Request) (Response, error) {
 
 func BenchmarkSimple(b *testing.B) {
 	b.StopTimer()
-	router := BuildDispatcher()
+	router := BuildRouter()
 
 	// Most of the test is a rip from https://github.com/ant0ine/go-json-rest/
 	// author Antoine Imbert