diff --git a/tree_test.go b/tree_test.go index 1ab08851..ea13c30e 100644 --- a/tree_test.go +++ b/tree_test.go @@ -222,6 +222,7 @@ func TestTreeWildcard(t *testing.T) { {"/a", false, "/:cc", Params{Param{Key: "cc", Value: "a"}}}, // * Error with argument being intercepted // new PR handle (/all /all/cc /a/cc) + // fix PR: https://github.com/gin-gonic/gin/pull/2796 {"/all", false, "/:cc", Params{Param{Key: "cc", Value: "all"}}}, {"/d", false, "/:cc", Params{Param{Key: "cc", Value: "d"}}}, {"/ad", false, "/:cc", Params{Param{Key: "cc", Value: "ad"}}},