Skip to content

Commit

Permalink
fix IDE0055
Browse files Browse the repository at this point in the history
  • Loading branch information
Zombach committed Jul 22, 2024
1 parent 5785f44 commit eb14a11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Polly.Specs/Timeout/TimeoutSpecs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public void Should_throw_when_action_is_null()
Func<Context, CancellationToken, EmptyStruct> action = null!;
Func<Context, TimeSpan> timeoutProvider = (_) => TimeSpan.Zero;
TimeoutStrategy timeoutStrategy = TimeoutStrategy.Optimistic;
Action<Context, TimeSpan, Task, Exception> onTimeout = (_ , _, _, _) => {};
Action<Context, TimeSpan, Task, Exception> onTimeout = (_, _, _, _) => { };

var instance = Activator.CreateInstance(
typeof(TimeoutPolicy),
Expand Down

0 comments on commit eb14a11

Please sign in to comment.