We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cd5b56 commit 4af533eCopy full SHA for 4af533e
Examples/MovieProject/MovieProject.Tests/MovieProject.InterceptionUnhappyTests/GetMovieTests.cs
@@ -141,7 +141,7 @@ private static List<HttpRequestMessage> AssertOutgoingRequests(HttpClient client
141
outgoing[0].GetEndpoint().Should().StartWith("GET http://www.omdbapifake.com/?apikey=863d6589&type=movie&t=");
142
var dates = outgoing[0].GetDatesSent();
143
dates.Should().HaveCount(1);
144
- dates[0].Should().BeCloseTo(DateTime.Now, 700);
+ dates[0].Should().BeCloseTo(DateTime.Now, TimeSpan.FromMilliseconds(700));
145
146
return outgoing;
147
}
0 commit comments