add comments

This commit is contained in:
qm012 2021-07-24 08:57:29 +08:00
parent 12bd84e941
commit 4c4e5d665c

View File

@ -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"}}},