Skip to content

Commit

Permalink
Don't fail on err
Browse files Browse the repository at this point in the history
  • Loading branch information
cowlicks committed Sep 25, 2024
1 parent ed1d1fc commit 18f7858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ fn make_test_basic_ffi_hb_get() -> Result<()> {
println!("stdout:\n{}", String::from_utf8_lossy(&output.stdout));
dbg!(&output.stderr);
println!("stderr:\n{}", String::from_utf8_lossy(&output.stderr));
let stdout = String::from_utf8(output.stdout)?.trim().to_string();
let stdout = String::from_utf8_lossy(&output.stdout).trim().to_string();
if stdout == "25" {
break;
}
Expand Down

0 comments on commit 18f7858

Please sign in to comment.