From ab8ae247f17a9f1bbe9bda321aa6719600eb4775 Mon Sep 17 00:00:00 2001 From: Philip Schlump Date: Mon, 18 Nov 2013 11:53:02 -0700 Subject: [PATCH] Fixed the domain name copied from my other code to be example.com --- mux_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mux_test.go b/mux_test.go index 35f0037..1a2a092 100644 --- a/mux_test.go +++ b/mux_test.go @@ -419,8 +419,8 @@ func TestQueries(t *testing.T) { }, { title: "Queries route, match with a query string", - route: new(Route).Host("www.2cwhy.com").Path("/api").Queries("foo", "bar", "baz", "ding"), - request: newRequest("GET", "http://www.2cwhy.com/api?foo=bar&baz=ding"), + route: new(Route).Host("www.example.com").Path("/api").Queries("foo", "bar", "baz", "ding"), + request: newRequest("GET", "http://www.example.com/api?foo=bar&baz=ding"), vars: map[string]string{}, host: "", path: "",