mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 23:51:06 +01:00
Fix clippy warnings
This commit is contained in:
parent
d13798748f
commit
00f520cd2d
@ -623,8 +623,8 @@ mod tests {
|
|||||||
use actix_web::{error, web, App, Error, HttpResponse};
|
use actix_web::{error, web, App, Error, HttpResponse};
|
||||||
|
|
||||||
const COOKIE_KEY_MASTER: [u8; 32] = [0; 32];
|
const COOKIE_KEY_MASTER: [u8; 32] = [0; 32];
|
||||||
const COOKIE_NAME: &'static str = "actix_auth";
|
const COOKIE_NAME: &str = "actix_auth";
|
||||||
const COOKIE_LOGIN: &'static str = "test";
|
const COOKIE_LOGIN: &str = "test";
|
||||||
|
|
||||||
#[actix_rt::test]
|
#[actix_rt::test]
|
||||||
async fn test_identity() {
|
async fn test_identity() {
|
||||||
@ -790,7 +790,7 @@ mod tests {
|
|||||||
let key: Vec<u8> = COOKIE_KEY_MASTER
|
let key: Vec<u8> = COOKIE_KEY_MASTER
|
||||||
.iter()
|
.iter()
|
||||||
.chain([1, 0, 0, 0].iter())
|
.chain([1, 0, 0, 0].iter())
|
||||||
.map(|e| *e)
|
.copied()
|
||||||
.collect();
|
.collect();
|
||||||
jar.private(&Key::from_master(&key)).add(Cookie::new(
|
jar.private(&Key::from_master(&key)).add(Cookie::new(
|
||||||
COOKIE_NAME,
|
COOKIE_NAME,
|
||||||
@ -846,7 +846,7 @@ mod tests {
|
|||||||
let key: Vec<u8> = COOKIE_KEY_MASTER
|
let key: Vec<u8> = COOKIE_KEY_MASTER
|
||||||
.iter()
|
.iter()
|
||||||
.chain([1, 0, 0, 0].iter())
|
.chain([1, 0, 0, 0].iter())
|
||||||
.map(|e| *e)
|
.copied()
|
||||||
.collect();
|
.collect();
|
||||||
let cookie = cookies
|
let cookie = cookies
|
||||||
.private(&Key::from_master(&key))
|
.private(&Key::from_master(&key))
|
||||||
|
@ -403,8 +403,7 @@ mod tests {
|
|||||||
assert!(response
|
assert!(response
|
||||||
.response()
|
.response()
|
||||||
.cookies()
|
.cookies()
|
||||||
.find(|c| c.name() == "actix-session")
|
.any(|c| c.name() == "actix-session"));
|
||||||
.is_some());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[actix_rt::test]
|
#[actix_rt::test]
|
||||||
@ -424,8 +423,7 @@ mod tests {
|
|||||||
assert!(response
|
assert!(response
|
||||||
.response()
|
.response()
|
||||||
.cookies()
|
.cookies()
|
||||||
.find(|c| c.name() == "actix-session")
|
.any(|c| c.name() == "actix-session"));
|
||||||
.is_some());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[actix_rt::test]
|
#[actix_rt::test]
|
||||||
@ -445,8 +443,7 @@ mod tests {
|
|||||||
assert!(response
|
assert!(response
|
||||||
.response()
|
.response()
|
||||||
.cookies()
|
.cookies()
|
||||||
.find(|c| c.name() == "actix-session")
|
.any(|c| c.name() == "actix-session"));
|
||||||
.is_some());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[actix_rt::test]
|
#[actix_rt::test]
|
||||||
|
Loading…
Reference in New Issue
Block a user