Skip to content

Commit 00acda1

Browse files
committed
remove --local from create app
1 parent 3a09582 commit 00acda1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • integration-tests/src/test/java/com/fnproject/fn/integrationtest

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class FlowTest {
2626
public void shouldInvokeBasicFlow() throws Exception {
2727
IntegrationTestRule.TestContext tc = testRule.newTest();
2828
tc.withDirFrom("funcs/flowBasic").rewritePOM();
29-
tc.runFn("--verbose", "create", "app", tc.appName(), "--local");
29+
tc.runFn("--verbose", "create", "app", tc.appName());
3030
tc.runFn("--verbose", "deploy", "--app", tc.appName(), "--local");
3131
tc.runFn("config", "app", tc.appName(), "COMPLETER_BASE_URL", testRule.getFlowURL());
3232
CmdResult r = tc.runFnWithInput("1", "invoke", tc.appName(), "flowbasic");
@@ -38,7 +38,7 @@ public void shouldInvokeBasicFlow() throws Exception {
3838
public void shouldInvokeBasicFlowJDK8() throws Exception {
3939
IntegrationTestRule.TestContext tc = testRule.newTest();
4040
tc.withDirFrom("funcs/flowBasicJDK8").rewritePOM();
41-
tc.runFn("--verbose", "create", "app", tc.appName(), "--local");
41+
tc.runFn("--verbose", "create", "app", tc.appName());
4242
tc.runFn("--verbose", "deploy", "--app", tc.appName(), "--local");
4343
tc.runFn("config", "app", tc.appName(), "COMPLETER_BASE_URL", testRule.getFlowURL());
4444
CmdResult r = tc.runFnWithInput("1", "invoke", tc.appName(), "flowbasicj8");
@@ -50,7 +50,7 @@ public void shouldInvokeBasicFlowJDK8() throws Exception {
5050
public void shouldExerciseAllFlow() throws Exception {
5151
IntegrationTestRule.TestContext tc = testRule.newTest();
5252
tc.withDirFrom("funcs/flowAllFeatures").rewritePOM();
53-
tc.runFn("--verbose", "create", "app", tc.appName(), "--local");
53+
tc.runFn("--verbose", "create", "app", tc.appName());
5454
tc.runFn("--verbose", "deploy", "--app", tc.appName(), "--local");
5555
tc.runFn("config", "app", tc.appName(), "COMPLETER_BASE_URL", testRule.getFlowURL());
5656
CmdResult r = tc.runFnWithInput("1", "invoke", tc.appName(), "flowallfeatures");

0 commit comments

Comments
 (0)