Fix missing .trim() when verifying FIPS module name

This commit is contained in:
Manuel Olguín Muñoz 2023-08-03 14:55:44 -04:00 committed by Ivan Nikulin
parent bb063aa9e6
commit 57e54be907
1 changed files with 1 additions and 1 deletions

View File

@ -558,7 +558,7 @@ fn link_in_precompiled_bcm_o(bssl_dir: &str) {
let out = run_command(Command::new("ar").args(["t", &libcrypto_path, "bcm.o"])).unwrap();
assert_eq!(
String::from_utf8(out.stdout).unwrap(),
String::from_utf8(out.stdout).unwrap().trim(),
"bcm.o",
"failed to verify FIPS module name"
);