Skip to content

Commit

Permalink
Update Function Signature
Browse files Browse the repository at this point in the history
  • Loading branch information
psainics committed Oct 25, 2023
1 parent 5f24893 commit 9054991
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ private BigQueryOutputFormat.BigQueryOutputCommitter initMocks(String operation)
ArgumentMatchers.any(),
ArgumentMatchers.any(JobId.class),
ArgumentMatchers.any(),
ArgumentMatchers.any(Dataset.class));
ArgumentMatchers.any(Dataset.class),
ArgumentMatchers.any());

FieldSetter.setField(spy, bigQueryOutputCommitter.getClass().getDeclaredField("bigQueryHelper"),
bigQueryHelperMock);
Expand Down Expand Up @@ -157,7 +158,8 @@ public void commitJobTestUpdateBQInvocations() throws Exception {
ArgumentMatchers.any(),
ArgumentMatchers.any(JobId.class),
ArgumentMatchers.any(),
ArgumentMatchers.any(Dataset.class));
ArgumentMatchers.any(Dataset.class),
ArgumentMatchers.any());
}

}

0 comments on commit 9054991

Please sign in to comment.