mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Fix setUpScaffold() signature
Adds the missing String[] params to the method signature, so test cases can pass any needed combination of options to the scaffolding setup from a @BeforeAll method.
This commit is contained in:
parent
f45a26ca54
commit
ac3c6e07f0
@ -73,9 +73,9 @@ public class ApiTestCase {
|
||||
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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user