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:
ghubstan 2020-08-25 11:29:27 -03:00
parent f45a26ca54
commit ac3c6e07f0
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -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();
}