We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cffe05 commit a9b16c9Copy full SHA for a9b16c9
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.err.println(res);
157
- }
+// if (!res.isSuccess()) {
+// System.out.println(res);
+// }
158
Assertions.assertThat(res.isSuccess()).withFailMessage("Expected command '" + res.cmd + "' to return 0").isTrue();
159
return res;
160
}
0 commit comments