Skip to content

Commit

Permalink
Fix flaky tests (#16042)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshLove-msft authored Oct 16, 2020
1 parent 437d9fb commit 568a086
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public async Task ScheduleMessageLogsEvents()
log => log.ScheduleMessagesStart(
sender.Identifier,
1,
scheduleTime.ToString(CultureInfo.InvariantCulture)),
It.IsAny<string>()),
Times.Once);
mockLogger
.Verify(
Expand Down Expand Up @@ -236,7 +236,7 @@ public void ScheduleMessageExceptionLogsEvents()
log => log.ScheduleMessagesStart(
sender.Identifier,
1,
scheduleTime.ToString(CultureInfo.InvariantCulture)),
It.IsAny<string>()),
Times.Once);
mockLogger
.Verify(
Expand Down

0 comments on commit 568a086

Please sign in to comment.