We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff1d6db commit 1989a00Copy full SHA for 1989a00
src/hyperlight_host/tests/integration_test.rs
@@ -234,7 +234,7 @@ fn interrupt_same_thread_no_barrier() {
234
// Only allow successful calls or interrupted.
235
// The call can be successful in case the call is finished before kill() is called.
236
Ok(_) | Err(HyperlightError::ExecutionCanceledByHost()) => {}
237
- _ => panic!("Unexpected return"),
+ other => panic!("Unexpected return: {:?}", other),
238
};
239
if sbox2.poisoned() {
240
sbox2.restore(snapshot2.clone()).unwrap();
0 commit comments