From 4c4e5d665cd296df3a90837755bf9eee33ccd982 Mon Sep 17 00:00:00 2001 From: qm012 Date: Sat, 24 Jul 2021 08:57:29 +0800 Subject: [PATCH] add comments --- tree_test.go | 1 + 1 file changed, 1 insertion(+) 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"}}},