Skip to content

Commit 5cac80b

Browse files
[main] Update dependencies from microsoft/testfx (#7053)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Youssef Victor <[email protected]>
1 parent 978d8cb commit 5cac80b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

eng/Version.Details.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
<Uri>https://dev.azure.com/devdiv/DevDiv/_git/vs-code-coverage</Uri>
1818
<Sha>a8c648c956b61c0434ed9ac4ac4122df01467ca6</Sha>
1919
</Dependency>
20-
<Dependency Name="MSTest" Version="4.1.0-preview.25603.1">
20+
<Dependency Name="MSTest" Version="4.1.0-preview.25604.3">
2121
<Uri>https://github.com/microsoft/testfx</Uri>
22-
<Sha>a11abf7becb2795ce94216aadf8561c3f7c34497</Sha>
22+
<Sha>aaa16e9321c4344b439324378ddb23b60e1d3461</Sha>
2323
</Dependency>
24-
<Dependency Name="Microsoft.Testing.Platform" Version="2.1.0-preview.25603.1">
24+
<Dependency Name="Microsoft.Testing.Platform" Version="2.1.0-preview.25604.3">
2525
<Uri>https://github.com/microsoft/testfx</Uri>
26-
<Sha>a11abf7becb2795ce94216aadf8561c3f7c34497</Sha>
26+
<Sha>aaa16e9321c4344b439324378ddb23b60e1d3461</Sha>
2727
</Dependency>
2828
</ToolsetDependencies>
2929
</Dependencies>

eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<MicrosoftDotNetBuildTasksTemplatingPackageVersion>11.0.0-beta.25604.3</MicrosoftDotNetBuildTasksTemplatingPackageVersion>
1111
<MicrosoftTestingExtensionsCodeCoverageVersion>18.3.0-preview.25603.1</MicrosoftTestingExtensionsCodeCoverageVersion>
1212
<!-- empty line to avoid merge conflicts for darc PRs to update CC and MSTest+MTP -->
13-
<MSTestVersion>4.1.0-preview.25603.1</MSTestVersion>
14-
<MicrosoftTestingPlatformVersion>2.1.0-preview.25603.1</MicrosoftTestingPlatformVersion>
13+
<MSTestVersion>4.1.0-preview.25604.3</MSTestVersion>
14+
<MicrosoftTestingPlatformVersion>2.1.0-preview.25604.3</MicrosoftTestingPlatformVersion>
1515
</PropertyGroup>
1616
</Project>

test/UnitTests/MSTest.Engine.UnitTests/Adapter_ExecuteRequestAsyncTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ await adapter.ExecuteRequestAsync(new(
8080
nameof(ExecutableNode_ThatThrows_ShouldReportError), lastNode.Properties.Single<ErrorTestNodeStateProperty>().Exception!.StackTrace!, "lastNode properties should contain the name of the test");
8181
TimingProperty timingProperty = lastNode.Properties.Single<TimingProperty>();
8282
Assert.AreEqual(fakeClock.UsedTimes[0], timingProperty.GlobalTiming.StartTime);
83-
Assert.IsTrue(timingProperty.GlobalTiming.StartTime <= timingProperty.GlobalTiming.EndTime, "start time is before (or the same as) stop time");
83+
Assert.IsLessThanOrEqualTo(timingProperty.GlobalTiming.EndTime, timingProperty.GlobalTiming.StartTime, "start time is before (or the same as) stop time");
8484
Assert.AreEqual(fakeClock.UsedTimes[1], timingProperty.GlobalTiming.EndTime);
8585
Assert.IsGreaterThan(0, timingProperty.GlobalTiming.Duration.TotalMilliseconds, $"duration should be greater than 0");
8686
}

0 commit comments

Comments
 (0)