fix: remove TUI boolean bug, P2P unwrap violation, and WebTransport placeholder

- Remove `|| true` from cursor positioning condition in v2_tui.rs
- Replace .lock().unwrap() with .expect() in P2P routing tests
- Remove assert!(true) placeholder in WebTransport test
This commit is contained in:
2026-03-07 20:27:59 +01:00
parent b98dcc27ae
commit 3708b8df41
3 changed files with 4 additions and 4 deletions

View File

@@ -415,6 +415,6 @@ pub fn build_webtransport_server_config(
mod tests {
#[test]
fn webtransport_module_compiles() {
assert!(true);
// Module-level compilation check; no runtime assertion needed.
}
}