Skip to content

Commit

Permalink
Add missing parameter to setUpScaffold method
Browse files Browse the repository at this point in the history
  • Loading branch information
ghubstan committed Aug 21, 2020
1 parent ee8f70d commit 29b686f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apitest/src/test/java/bisq/apitest/ApiTestCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ public static void setUpScaffold(String supportingApps)
grpcStubs = new GrpcStubs(alicedaemon, config).init();
}

public static void setUpScaffold()
public static void setUpScaffold(String[] params)
throws InterruptedException, ExecutionException, IOException {
scaffold = new Scaffold(new String[]{}).setUp();
scaffold = new Scaffold(params).setUp();
config = scaffold.config;
grpcStubs = new GrpcStubs(alicedaemon, config).init();
}
Expand Down

0 comments on commit 29b686f

Please sign in to comment.