Skip to content
New issue

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

System.Net.Requests: Pick correct RemoteExecutor overload in test #74994

Merged
merged 1 commit into from
Sep 4, 2022

Commits on Sep 2, 2022

  1. System.Net.Requests: Pick correct RemoteExecutor overload in test

    The test was using `RemoteExecutor.Invoke(Action<string, string, string, string> method, ...)` since there is no overload that takes `Func<string, string, string, string, Task>` (only one with three strings) so we weren't awaiting the Task.
    
    Fix by removing one string parameter so it picks the correct overload.
    
    Fixes dotnet#74667
    akoeplinger committed Sep 2, 2022
    Configuration menu
    Copy the full SHA
    1838cbc View commit details
    Browse the repository at this point in the history