format
Some checks failed
CI / checks (push) Failing after 2m23s

This commit is contained in:
Alex Emmet 2026-07-15 01:53:48 +02:00
commit 203ef1adcc
10 changed files with 55 additions and 76 deletions

View file

@ -369,10 +369,9 @@ mod pipe_error_tests {
#[test]
fn test_pipe_error_from_connection_error() {
let pe: PipeError = CommunicationError::ConnectionError(
wtransport::error::ConnectionError::TimedOut,
)
.into();
let pe: PipeError =
CommunicationError::ConnectionError(wtransport::error::ConnectionError::TimedOut)
.into();
assert_eq!(pe, PipeError::ConnectionClosed);
}