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
1 changed files with 2 additions and 2 deletions

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");
}