Skip to content

Commit

Permalink
v8.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Abraham committed Nov 26, 2024
1 parent f7f413f commit 94a0ce4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/TypeCache.Tests/Extensions/ActionExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public async Task Retry()

var timeProvider = new FakeTimeProvider();

var task = action.Retry(Sequence.LinearTime(1.0.ToSeconds()).Take(10), timeProvider);
var task = action.Retry(Sequence.LinearTime(1.0.ToSeconds(), 10), timeProvider);
while (!task.IsCompleted)
timeProvider.Advance(1.0.ToSeconds());

Expand Down
2 changes: 1 addition & 1 deletion tests/TypeCache.Tests/Extensions/FuncExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public async Task Retry()

var timeProvider = new FakeTimeProvider();

var task = func.Retry(Sequence.LinearTime(1.0.ToSeconds()).Take(10), timeProvider);
var task = func.Retry(Sequence.LinearTime(1.0.ToSeconds(), 10), timeProvider);
while (!task.IsCompleted)
timeProvider.Advance(1.0.ToSeconds());

Expand Down

0 comments on commit 94a0ce4

Please sign in to comment.