Skip to content

Commit

Permalink
Merge pull request #1778 from jnyrup/RelaxExecutionTimeTest
Browse files Browse the repository at this point in the history
  • Loading branch information
jnyrup committed Jan 16, 2022
2 parents e0d8e8b + 915dbca commit 3d7ab25
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -163,7 +163,7 @@ public void When_the_execution_time_of_an_async_action_is_less_than_a_limit_it_s
Func<Task> someAction = () => Task.Delay(TimeSpan.FromMilliseconds(100));

// Act
Action act = () => someAction.ExecutionTime().Should().BeLessThan(2.Seconds());
Action act = () => someAction.ExecutionTime().Should().BeLessThan(20.Seconds());

// Assert
act.Should().NotThrow();
Expand Down

0 comments on commit 3d7ab25

Please sign in to comment.