Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jericho committed Jan 23, 2021
1 parent 032dd40 commit 30c27e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public async Task RunAsync(IBaseClient client, TextWriter log, CancellationToken
await log.WriteLineAsync($"Is {emails[1]} unsubscribed (should be true): {isUnsubscribed1}").ConfigureAwait(false);

// GET ALL ADDRESSES ON THE SUPPRESSION LIST
var paginatedResult = await client.GlobalSuppressions.GetAllAsync(null, null, 1, 0, null, CancellationToken.None).ConfigureAwait(false);
var paginatedResult = await client.GlobalSuppressions.GetAllAsync(null, null, null, 1, 0, null, CancellationToken.None).ConfigureAwait(false);
await log.WriteLineAsync($"There are {int.Parse(paginatedResult.Last.Title)} addresses on the global suppression list").ConfigureAwait(false);

// SEARCH SUPPRESSED EMAIL ADDRESSES
Expand Down

0 comments on commit 30c27e7

Please sign in to comment.