diff --git a/fastpath_test.go b/fastpath_test.go index 003c830..5cb019b 100644 --- a/fastpath_test.go +++ b/fastpath_test.go @@ -87,7 +87,7 @@ func Test_With_With_A_Param_And_Wildcard_Differents_Positions(t *testing.T) { t, New("/api/v1/:param/abc/*"), []testcase{ - {uri: "/api/v1/well/abc/wildcardParam", params: []string{"well", "wildcardParam"}, ok: true}, + {uri: "/api/v1/well/abc/wildcard", params: []string{"well", "wildcard"}, ok: true}, {uri: "/api/v1/well/abc/", params: []string{"well", ""}, ok: true}, {uri: "/api/v1/well/abc", params: []string{"well", ""}, ok: true}, {uri: "/api/v1/well/ttt", params: nil, ok: false},