Fix AppWorxLineageEtl's constructor (#707)

This commit is contained in:
Mars Lan 2017-08-25 15:02:26 -07:00 committed by GitHub
parent 077c70f173
commit 1c0eeea181
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ public class AppworxLineageEtl extends EtlJob {
Connection conn; Connection conn;
public AppworxLineageEtl(int appId, long whExecId, Properties properties) { public AppworxLineageEtl(long whExecId, Properties properties) {
super(whExecId, properties); super(whExecId, properties);
try { try {
setUp(); setUp();

View File

@ -23,7 +23,7 @@ public class AppworxLineageEtlTest {
@BeforeTest @BeforeTest
public void setUp() throws Exception { public void setUp() throws Exception {
awl = new AppworxLineageEtl(3, 0L, new Properties()); awl = new AppworxLineageEtl(0L, new Properties());
} }
@Test(groups = {"needConfig"}) @Test(groups = {"needConfig"})