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 <fumiya2324@gmail.com>
  • Loading branch information
higuruchi committed Jul 28, 2023
1 parent 6abbf3d commit 5710749
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 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,8 @@ pub fn validate_domainname(spec: &Spec) {
if actual_domainname_cstr.to_str().unwrap() != expected_domainname {
eprintln!(
"Unexpected domainname, expected: {:?} found: {:?}",
expected_domainname, actual_domainname
expected_domainname,
actual_domainname_cstr.to_str().unwrap()
);
}
}
Expand Down

0 comments on commit 5710749

Please sign in to comment.