Skip to content

Commit 9781d4f

Browse files
committed
corrected path for feature
1 parent 5294941 commit 9781d4f

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/e2e-test/features/Pipeline.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#
1616

1717
Feature: Oracle - Verify Oracle source data transfer to Big Query
18-
@ENV_VARIABLES #@ORACLE_SOURCE @ORACLE_DELETE @BIGQUERY_DELETE
18+
@ENV_VARIABLES @ORACLE_SOURCE @ORACLE_DELETE @BIGQUERY_DELETE
1919
Scenario: To verify replication of snapshot and cdc data from Oracle to Big Query successfully with Sanity test
2020
Given Open DataFusion Project with replication to configure pipeline
2121
When Enter input plugin property: "name" with value: "pipelineName"

src/e2e-test/java/io.cdap.plugin/hooks/TestSetUpHooks.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,12 @@
1515
*/
1616

1717
package io.cdap.plugin.hooks;
18-
import com.google.cloud.bigquery.BigQueryException;
19-
import io.cdap.e2e.utils.BigQueryClient;
18+
2019
import io.cdap.e2e.utils.PluginPropertyUtils;
2120
import io.cdap.plugin.utils.BigQuery;
2221
import io.cdap.plugin.utils.OracleClient;
2322
import io.cucumber.java.After;
2423
import io.cucumber.java.Before;
25-
import org.junit.Assert;
2624
import stepsdesign.BeforeActions;
2725

2826
import java.io.IOException;
@@ -95,7 +93,7 @@ public static void dropTables() throws SQLException, ClassNotFoundException {
9593
}
9694

9795
@After(order = 1, value = "@BIGQUERY_DELETE")
98-
public static void deleteTempTargetBQTable() throws IOException, InterruptedException {
96+
public static void deleteTargetBQTable() throws IOException, InterruptedException {
9997
BigQuery.deleteTable(tableName);
10098
}
10199
}

0 commit comments

Comments
 (0)