summarylogtreecommitdiffstats
path: root/0002-Fix-tests.patch
blob: 8481e6295d9a387e10dae801e8d40a2582dbc3dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
commit 12928b832c8354a9d81fe984e378f60353cca3b3
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Sat Nov 30 23:30:35 2019 +0100

    Fix broken tests

diff --git a/src/api/core/two_factor/email.rs b/src/api/core/two_factor/email.rs
index 0a78ca2..5b1565d 100644
--- a/src/api/core/two_factor/email.rs
+++ b/src/api/core/two_factor/email.rs
@@ -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");
     }