1
0
mirror of https://github.com/labstack/echo.git synced 2025-11-29 22:48:07 +02:00
Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana
2015-09-17 08:11:35 -07:00
parent 853e650ee2
commit c9a581815a
3 changed files with 5 additions and 5 deletions

View File

@@ -499,7 +499,7 @@ func TestRouterPriority(t *testing.T) {
if assert.NotNil(t, h) {
h(c)
assert.Equal(t, 7, c.Get("g"))
assert.Equal(t, "joe/books", c.Param("_name"))
assert.Equal(t, "joe/books", c.Param("_*"))
}
}