We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f32e6e commit c0f83c9Copy full SHA for c0f83c9
1 file changed
tests/Proto.Actor.Tests/Mailbox/MailboxSchedulingTests.cs
@@ -127,8 +127,6 @@ public async Task GivenNonCompletedUserMessage_ShouldSetMailboxToIdleAfterComple
127
msg1.TaskCompletionSource.SetResult(0);
128
await Task.Delay(1000);
129
130
- Assert.True(mailbox.Status == MailboxStatus.Idle,
131
- "Mailbox should be set back to Idle after completion of message."
132
- );
+ Assert.Equal(MailboxStatus.Idle, mailbox.Status);
133
}
134
-}
+}
0 commit comments