We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd45106 commit 1a0e1abCopy full SHA for 1a0e1ab
1 file changed
backend/tests/csrf_token_tests.rs
@@ -13,7 +13,7 @@ fn test_csrf_token_lifecycle() {
13
password: "ValidPassword123!".to_string(),
14
};
15
let token = issue_csrf_token(&request.username).expect("Failed to issue token");
16
-
+
17
// Check format (basic check since validate_csrf_token is private)
18
assert!(token.starts_with("v1|"));
19
let parts: Vec<&str> = token.split('|').collect();
0 commit comments