style(tests): cargo fmt for ws-upgrade-session ws-06 test

This commit is contained in:
2026-08-29 12:11:57 +00:00
parent 1db0ea88e5
commit e9ddf943e5
+4 -1
View File
@@ -604,5 +604,8 @@ async fn inbound_message_over_cap_fails_the_connection() {
.next_close(std::time::Duration::from_secs(5)) .next_close(std::time::Duration::from_secs(5))
.await .await
.expect("server must fail the oversized-inbound connection (WS-06)"); .expect("server must fail the oversized-inbound connection (WS-06)");
assert!(close.is_some(), "expected a close or stream end, got {close:?}"); assert!(
close.is_some(),
"expected a close or stream end, got {close:?}"
);
} }