Skip to content

Commit c864d6b

Browse files
committed
debug
1 parent e21284a commit c864d6b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/e2e-test/java/io/cdap/plugin/bigquery/stepsdesign/BigQueryMultiTable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public void validateDataTransferredFromBigQueryToBigQueryMultiTableInOneTableIsE
4848
boolean recordsMatched = BigQueryMultiTableValidation.
4949
validateBQToBigQueryMultiTable(Collections.singletonList(PluginPropertyUtils.pluginProp("bqSourceTable")),
5050
Collections.singletonList(PluginPropertyUtils.pluginProp
51-
("bqmtTargetTableTabA")));
51+
("bqmtTargetTableTabB")));
5252
Assert.assertTrue("Value of records transferred to the BQ sink should be equal to the value " +
5353
"of the records in the source table", recordsMatched);
5454
}

src/e2e-test/java/io/cdap/plugin/common/stepsdesign/TestSetupHooks.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1623,7 +1623,7 @@ public static void deleteAllBqTables() throws IOException, InterruptedException
16231623
@After(order = 1, value = "@BQ_SINK_BQMT_TEST")
16241624
public static void deleteTargetBqmtTable() throws IOException, InterruptedException {
16251625
try {
1626-
bqTargetTable = PluginPropertyUtils.pluginProp("bqTargetTable");
1626+
bqTargetTable = PluginPropertyUtils.pluginProp("bqmtTargetTableTabB");
16271627
BigQueryClient.dropBqQuery(bqTargetTable);
16281628
BigQueryClient.dropBqQuery(bqSourceTable);
16291629
BeforeActions.scenario.write("BQ Target table - " + bqTargetTable + " deleted successfully");

0 commit comments

Comments
 (0)