From 22929d101042e1212ccaf340905fbc6809f461aa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 23 Apr 2026 12:18:09 +0000 Subject: [PATCH 1/2] Initial plan From c784841e1af429ada54d9986ca8e964510adda75 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 23 Apr 2026 12:30:16 +0000 Subject: [PATCH 2/2] Fix flaky BeLessThanOrEqualTo execution time test by increasing time limit Agent-Logs-Url: https://github.com/fluentassertions/fluentassertions/sessions/6963d932-6650-4e1b-9044-47692ab4a27f Co-authored-by: dennisdoomen <572734+dennisdoomen@users.noreply.github.com> --- .../Specialized/ExecutionTimeAssertionsSpecs.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/FluentAssertions.Specs/Specialized/ExecutionTimeAssertionsSpecs.cs b/Tests/FluentAssertions.Specs/Specialized/ExecutionTimeAssertionsSpecs.cs index d0f632baa4..7277d16dc1 100644 --- a/Tests/FluentAssertions.Specs/Specialized/ExecutionTimeAssertionsSpecs.cs +++ b/Tests/FluentAssertions.Specs/Specialized/ExecutionTimeAssertionsSpecs.cs @@ -63,7 +63,7 @@ public void When_the_execution_time_of_an_action_is_less_than_or_equal_to_a_limi Action someAction = () => Thread.Sleep(100); // Act - Action act = () => someAction.ExecutionTime().Should().BeLessThanOrEqualTo(1.Seconds()); + Action act = () => someAction.ExecutionTime().Should().BeLessThanOrEqualTo(2.Seconds()); // Assert act.Should().NotThrow();