Skip to content

Commit

Permalink
Increase timeout value to get rid of potentially flaky tests
Browse files Browse the repository at this point in the history
  • Loading branch information
basdijkstra committed Nov 18, 2023
1 parent 732b4b1 commit 2d40dac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private void CreateStubForDelayedResponse()
this.Server?.Given(Request.Create().WithPath("/delayed-response").UsingGet())
.RespondWith(Response.Create()
.WithStatusCode(200)
.WithDelay(TimeSpan.FromMilliseconds(200)));
.WithDelay(TimeSpan.FromMilliseconds(250)));
}
}
}

0 comments on commit 2d40dac

Please sign in to comment.