diff --git a/functional-tests/src/lib.rs b/functional-tests/src/lib.rs index 756e832f5..c2fe4da4c 100644 --- a/functional-tests/src/lib.rs +++ b/functional-tests/src/lib.rs @@ -447,6 +447,7 @@ b: ba"# .output() .expect("Error running sops"); assert!(output.status.success(), "SOPS didn't return successfully"); + println!("stdout: '{test}'", test=String::from_utf8_lossy(&output.stdout)); assert!(String::from_utf8_lossy(&output.stdout).contains("first comment in file"), "Comment was not decrypted"); assert!(String::from_utf8_lossy(&output.stdout).contains("this-is-a-comment"), "Comment was not decrypted"); } @@ -460,6 +461,7 @@ b: ba"# .output() .expect("Error running sops"); assert!(output.status.success(), "SOPS didn't return successfully"); + println!("stdout: '{test}'", test=String::from_utf8_lossy(&output.stdout)); assert!(String::from_utf8_lossy(&output.stdout).contains("first comment in file"), "Comment was not decrypted"); assert!(String::from_utf8_lossy(&output.stdout).contains("this-is-a-comment"), "Comment was not decrypted"); }