Skip to content

Commit

Permalink
Fix error message from binary to string
Browse files Browse the repository at this point in the history
Signed-off-by: higuruchi <[email protected]>
  • Loading branch information
higuruchi committed Jul 28, 2023
1 parent 6abbf3d commit 5aae0a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/rust-integration-tests/runtimetest/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ pub fn validate_domainname(spec: &Spec) {
if actual_domainname_cstr.to_str().unwrap() != expected_domainname {

Check warning on line 96 in tests/rust-integration-tests/runtimetest/src/tests.rs

View workflow job for this annotation

GitHub Actions / check

Diff in /home/runner/work/youki/youki/tests/rust-integration-tests/runtimetest/src/tests.rs
eprintln!(
"Unexpected domainname, expected: {:?} found: {:?}",
expected_domainname, actual_domainname
expected_domainname, actual_domainname_cstr.to_str().unwrap()
);
}
}
Expand Down

0 comments on commit 5aae0a5

Please sign in to comment.