You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating to version 0.53.0 I get the following runtime error:
Expected exactly 1 argument, but got 2.
Changing the test method to public void CanHandleManyRequests_With_Changing_Subscribers(int consumers, int requests){...} fixes the issue.
I love the API change, where I now inject the two arguments instead of the tuple. I would like a compiletime error instead of a runtime error.
I have a test method with the following signature:
with the following data generator method:
After updating to version 0.53.0 I get the following runtime error:
Expected exactly 1 argument, but got 2.
Changing the test method to
public void CanHandleManyRequests_With_Changing_Subscribers(int consumers, int requests){...}fixes the issue.I love the API change, where I now inject the two arguments instead of the tuple. I would like a compiletime error instead of a runtime error.