Skip to content

Commit 437de69

Browse files
committed
Let's go again...
1 parent 0b05257 commit 437de69

3 files changed

Lines changed: 1 addition & 4 deletions

File tree

integration-tests/funcs/helloFunc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<configuration>
6363
<useSystemClassLoader>false</useSystemClassLoader>
6464
</configuration>
65-
</plugin>
65+
</plugin>
6666
</plugins>
6767
</build>
6868
</project>

integration-tests/src/main/java/com/fnproject/fn/integrationtest/IntegrationTestRule.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,11 +190,9 @@ public CmdResult runFnWithInputAllowError(String input, String... args) throws E
190190

191191
Process p = pb.start();
192192

193-
194193
p.getOutputStream().write(input.getBytes());
195194
p.getOutputStream().close();
196195

197-
198196
CompletableFuture<String> stderr = new CompletableFuture<>();
199197

200198
new Thread(() -> {

integration-tests/src/test/java/com/fnproject/fn/integrationtest/FunctionsTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ public void checkBoilerPlate() throws Exception {
4848
for (String format : new String[]{"http-stream"}) {
4949
for (String runtime : new String[]{"java9", "java8"}) {
5050
IntegrationTestRule.TestContext tc = testRule.newTest();
51-
tc.withDirFrom("funcs/helloFunc");
5251

5352
String fnName = "bp" + format + runtime;
5453
tc.runFn("init", "--runtime", runtime, "--name", fnName, "--format", format);

0 commit comments

Comments
 (0)