0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-01 11:38:58 +02:00

Fix broken tests

This commit is contained in:
Daniel García 2019-11-30 23:30:35 +01:00
parent 1e224220a8
commit 12928b832c
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A

View file

@ -321,14 +321,14 @@ mod tests {
#[test]
fn test_token() {
let result = generate_token(19).unwrap();
let result = crypto::generate_token(19).unwrap();
assert_eq!(result.chars().count(), 19);
}
#[test]
fn test_token_too_large() {
let result = generate_token(20);
let result = crypto::generate_token(20);
assert!(result.is_err(), "too large token should give an error");
}