fix tests

This commit is contained in:
Makis Maropoulos 2016-07-08 22:11:57 +02:00
parent 40ab94a9fc
commit 230d063e6d

View File

@ -755,7 +755,7 @@ func (ctx *Context) RemoveCookie(name string) {
cookie.SetExpire(exp)
ctx.Response.Header.SetCookie(cookie)
fasthttp.ReleaseCookie(cookie)
// delete respone's cookie also, which is temporarly available
// delete request's cookie also, which is temporarly available
ctx.Request.Header.DelCookie(name)
}