We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9b16c9 commit f6ca1deCopy full SHA for f6ca1de
1 file changed
integration-tests/src/main/java/com/fnproject/fn/integrationtest/IntegrationTestRule.java
@@ -152,9 +152,9 @@ public TestContext withDirFrom(String location) throws IOException {
152
public CmdResult runFnWithInput(String input, String... args) throws Exception {
153
CmdResult res = runFnWithInputAllowError(input, args);
154
155
-// if (!res.isSuccess()) {
156
-// System.out.println(res);
157
-// }
+ if (res.isSuccess() == false) {
+ System.out.println(res.toString());
+ }
158
Assertions.assertThat(res.isSuccess()).withFailMessage("Expected command '" + res.cmd + "' to return 0").isTrue();
159
return res;
160
}
0 commit comments