Skip to content

Commit

Permalink
🐛 Fix ScaffoldJavaJdbcSourceAcceptanceTest template (#4132)
Browse files Browse the repository at this point in the history
* Fix ScaffoldJavaJdbcSourceAcceptanceTest template

* Update exception signature
  • Loading branch information
DoNotPanicUA authored Jun 15, 2021
1 parent 2c22e55 commit 6fb1b9b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import com.fasterxml.jackson.databind.JsonNode;
import io.airbyte.commons.json.Jsons;
import io.airbyte.commons.resources.MoreResources;
import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest;
import io.airbyte.integrations.standardtest.source.TestDestinationEnv;
import io.airbyte.protocol.models.ConfiguredAirbyteCatalog;
import io.airbyte.protocol.models.ConnectorSpecification;
import java.util.Collections;
Expand All @@ -39,7 +40,7 @@ public class {{pascalCase name}}SourceAcceptanceTest extends SourceAcceptanceTes
private JsonNode config;

@Override
protected void setup(TestDestinationEnv testEnv) throws Exception {
protected void setupEnvironment(TestDestinationEnv testEnv) {
// TODO create new container. Ex: "new OracleContainer("epiclabs/docker-oracle-xe-11g");"
// TODO make container started. Ex: "container.start();"
// TODO init JsonNode config
Expand Down

0 comments on commit 6fb1b9b

Please sign in to comment.