We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
actual
expected
1 parent ccab405 commit 89b5153Copy full SHA for 89b5153
1 file changed
tests/ui/runtime/on-broken-pipe/auxiliary/sigpipe-utils.rs
@@ -28,6 +28,9 @@ pub fn assert_sigpipe_handler(expected_handler: SignalHandler) {
28
SignalHandler::Default => libc::SIG_DFL,
29
};
30
31
- assert_eq!(actual, expected, "actual and expected SIGPIPE disposition differs");
+ assert_eq!(
32
+ actual, expected,
33
+ "actual {actual} and expected {expected} SIGPIPE disposition differs"
34
+ );
35
}
36
0 commit comments