We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version Information Version of Akka.NET? v1.5.0-beta3 Which Akka.NET Modules? All TestKit distributions.
Describe the bug
The following API signatures were broken by accident - and we should add them back before v1.5 ships:
ExpectMsgAllOf
params object[]
AwaitConditionAsync
Func<bool>
Func<Task<bool>>
ExpectOneAsync
Action
Func<Task>
The text was updated successfully, but these errors were encountered:
closed via #6467
Sorry, something went wrong.
No branches or pull requests
Version Information
Version of Akka.NET? v1.5.0-beta3
Which Akka.NET Modules? All TestKit distributions.
Describe the bug
The following API signatures were broken by accident - and we should add them back before v1.5 ships:
ExpectMsgAllOf
used to acceptparams object[]
- no longer does.AwaitConditionAsync
used to accept aFunc<bool>
- now it only accepts aFunc<Task<bool>>
; should still accept both.ExpectOneAsync
used to accept anAction
- now it only acceptsFunc<Task>
The text was updated successfully, but these errors were encountered: