Skip to content

Commit 38df210

Browse files
committed
corrected path for feature
1 parent 5294941 commit 38df210

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
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
}

src/e2e-test/java/io.cdap.plugin/tests/TestRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
@RunWith(Cucumber.class)
2626
@CucumberOptions(
27-
features = {"e2e-test/features"},
27+
features = {"src/e2e-test/features"},
2828
glue = {"stepsdesign", "io.cdap.plugin.stepsdesign", "io.cdap.plugin.hooks"},
2929
tags = {"@Oracle"}, monochrome = true,
3030
plugin = {"pretty", "html:target/cucumber-html-report", "json:target/cucumber-reports/cucumber.json",

0 commit comments

Comments
 (0)