Skip to content

Commit 2299469

Browse files
committed
debug
1 parent 0126320 commit 2299469

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
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-
("bqmtTargetTableTabB")));
51+
("bqTargetTable")));
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: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1627,7 +1627,6 @@ public static void deleteTargetBqmtTable() throws IOException, InterruptedExcept
16271627
bqTargetTable = PluginPropertyUtils.pluginProp("bqTargetTable");
16281628
BigQueryClient.dropBqQuery(bqTargetTable);
16291629
BeforeActions.scenario.write("BQ Target table - " + bqTargetTable + " deleted successfully");
1630-
bqTargetTable = StringUtils.EMPTY;
16311630
} catch (BigQueryException e) {
16321631
if (e.getMessage().contains("Not found: Table")) {
16331632
BeforeActions.scenario.write("BQ Target Table " + bqTargetTable + " does not exist");
@@ -1674,8 +1673,6 @@ public static void deleteTwoTargetTables() throws IOException, InterruptedExcept
16741673
BigQueryClient.dropBqQuery(bqTargetTable2);
16751674
BeforeActions.scenario.write("BQ Target table - " + bqTargetTable + " deleted successfully");
16761675
BeforeActions.scenario.write("BQ Target table2 - " + bqTargetTable2 + " deleted successfully");
1677-
bqTargetTable = StringUtils.EMPTY;
1678-
bqTargetTable2 = StringUtils.EMPTY;
16791676

16801677
} catch (BigQueryException e) {
16811678
if (e.getMessage().contains("Not found: Table")) {

0 commit comments

Comments
 (0)