Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebakken committed Oct 2, 2024
1 parent ee2ce25 commit e9e00b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Management/ManagementTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ public async Task PurgeQueueShouldReturnTheCorrectNumberOfMessagesPurged(QueueTy
await PublishAsync(queueSpec, 19);
await SystemUtils.WaitUntilQueueMessageCount(_queueName, 19);
ulong deleted = await queueSpec.PurgeAsync();
Assert.True(deleted == 19);
Assert.Equal((ulong)19, deleted);
await SystemUtils.WaitUntilQueueMessageCount(_queueName, 0);
}

Expand Down

0 comments on commit e9e00b3

Please sign in to comment.