Skip to content

Commit

Permalink
Update all xunit packages to 2.5.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrainger committed Oct 17, 2023
1 parent 7478172 commit ff4d501
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<ItemGroup>
<PackageReference Include="xunit" Version="2.5.3" />
<PackageReference Include="xunit.extensibility.execution" Version="2.5.1-pre.4" />
<PackageReference Include="xunit.extensibility.execution" Version="2.5.3" />
<PackageReference Include="Xunit.SkippableFact" Version="1.4.13" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/AdoNet.Specification.Tests/ConnectionTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public virtual async Task DisposeAsync_raises_Disposed()
var connection = CreateOpenConnection();
var disposedCount = 0;
connection.Disposed += (s, e) => disposedCount++;
await connection.DisposeAsync().ConfigureAwait(false);
await connection.DisposeAsync().ConfigureAwait(true);
Assert.Equal(1, disposedCount);
}
#endif
Expand Down
2 changes: 1 addition & 1 deletion tests/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="xunit" Version="2.5.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
</ItemGroup>
</Project>

0 comments on commit ff4d501

Please sign in to comment.