cargo fmt

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Va5eMEmWEnjMXBsBob5FDW
This commit is contained in:
2026-09-05 02:02:44 +00:00
co-authored by Claude Fable 5.1
parent 1e362fee3e
commit 9c4964ae27
+5 -1
View File
@@ -890,7 +890,11 @@ mod tests {
.unwrap() .unwrap()
}; };
// The first page after login writes the daily touch stamp… // The first page after login writes the daily touch stamp…
let response = app.clone().oneshot(get("/dashboard/articles")).await.unwrap(); let response = app
.clone()
.oneshot(get("/dashboard/articles"))
.await
.unwrap();
assert_eq!(response.status(), StatusCode::OK); assert_eq!(response.status(), StatusCode::OK);
let first = stamp().await; let first = stamp().await;
assert!(first.contains(TOUCHED_KEY), "{first}"); assert!(first.contains(TOUCHED_KEY), "{first}");