Skip to content

Commit 1a0e1ab

Browse files
committed
fix: remove trailing whitespace in csrf_token_tests.rs
1 parent fd45106 commit 1a0e1ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/tests/csrf_token_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fn test_csrf_token_lifecycle() {
1313
password: "ValidPassword123!".to_string(),
1414
};
1515
let token = issue_csrf_token(&request.username).expect("Failed to issue token");
16-
16+
1717
// Check format (basic check since validate_csrf_token is private)
1818
assert!(token.starts_with("v1|"));
1919
let parts: Vec<&str> = token.split('|').collect();

0 commit comments

Comments
 (0)