Code formatting

This commit is contained in:
2025-10-10 16:45:36 -04:00
parent a89415178d
commit 8a9bcce8f2
2 changed files with 10 additions and 3 deletions

View File

@@ -124,7 +124,9 @@ mod tests {
#[test]
fn test_tokenize() {
let rt = tokio::runtime::Runtime::new().unwrap();
let special_key = rt.block_on(icarus_envy::environment::get_secret_key()).value;
let special_key = rt
.block_on(icarus_envy::environment::get_secret_key())
.value;
let id = uuid::Uuid::new_v4();
match create_token(&special_key, &id) {
Ok((token, _duration)) => {