Skip to content

Commit

Permalink
hotfix: fix acceptance test (#2296)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgardens committed Mar 3, 2021
1 parent a39eb4f commit 75a5923
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,8 @@ public void testIncrementalSync() throws Exception {
assertDestinationContains(expectedRecords, STREAM_NAME);

// reset back to no data.
apiClient.getConnectionApi().resetConnection(new ConnectionIdRequestBody().connectionId(connectionId));
final JobInfoRead jobInfoRead = apiClient.getConnectionApi().resetConnection(new ConnectionIdRequestBody().connectionId(connectionId));
waitForSuccessfulJob(apiClient.getJobsApi(), jobInfoRead.getJob());
assertDestinationContains(Collections.emptyList(), STREAM_NAME);

// sync one more time. verify it is the equivalent of a full refresh.
Expand Down

0 comments on commit 75a5923

Please sign in to comment.