Skip to content

Commit fac5e92

Browse files
committed
Fix test so it passes
Signed-off-by: Ludvig Liljenberg <[email protected]>
1 parent d5b0f55 commit fac5e92

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/hyperlight_host/tests/sandbox_host_tests.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,7 @@ fn host_function_error() -> Result<()> {
371371
let res = init_sandbox
372372
.call::<i32>("GuestMethod1", msg.to_string())
373373
.unwrap_err();
374+
println!("{:#?}", res);
374375
assert!(
375376
matches!(&res, HyperlightError::GuestError(_, msg) if msg == "Host function error!") // rust guest
376377
|| matches!(&res, HyperlightError::GuestAborted(_, msg) if msg.contains("Host function error!")) // c guest

0 commit comments

Comments
 (0)