1
0
mirror of https://github.com/labstack/echo.git synced 2025-12-01 22:51:17 +02:00
Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana
2016-10-22 15:12:12 -07:00
parent 12573cd76d
commit 954efac63a
4 changed files with 14 additions and 12 deletions

View File

@@ -347,7 +347,7 @@ func TestRouterMatchAny(t *testing.T) {
c := e.NewContext(nil, nil).(*context)
r.Find(GET, "/", c)
assert.Equal(t, "", c.Param("_*"))
assert.Equal(t, "", c.Param("*"))
r.Find(GET, "/download", c)
assert.Equal(t, "download", c.Param("*"))