Fix OAuth completion argument annotation

This commit is contained in:
Steven Lee
2026-06-17 22:06:00 +00:00
parent a7efc83c7b
commit 184d4e4063

View File

@@ -534,7 +534,12 @@ mod tests {
assert_eq!(loader.good_loads.load(Ordering::Relaxed), 1);
assert_eq!(loader.bad_loads.load(Ordering::Relaxed), 1);
assert_oauth_completion(outgoing.receiver, /*success*/ true, None).await;
assert_oauth_completion(
outgoing.receiver,
/*success*/ true,
/*error*/ None,
)
.await;
Ok(())
}