1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-28 01:32:57 +01:00

set test cookie if it is not empty

This commit is contained in:
Nikolay Kim 2019-03-10 17:06:43 -07:00
parent 50a0cb5653
commit 6436004194

View File

@ -172,10 +172,12 @@ impl TestRequest {
let value = percent_encode(c.value().as_bytes(), USERINFO_ENCODE_SET); let value = percent_encode(c.value().as_bytes(), USERINFO_ENCODE_SET);
let _ = write!(&mut cookie, "; {}={}", name, value); let _ = write!(&mut cookie, "; {}={}", name, value);
} }
head.headers.insert( if !cookie.is_empty() {
header::COOKIE, head.headers.insert(
HeaderValue::from_str(&cookie.as_str()[2..]).unwrap(), header::COOKIE,
); HeaderValue::from_str(&cookie.as_str()[2..]).unwrap(),
);
}
req req
} }