Skip to content

Commit

Permalink
Bump test depependencies (#499)
Browse files Browse the repository at this point in the history
Fixes also xUnit1048
  • Loading branch information
Kielek authored Jun 19, 2024
1 parent 8e608cd commit 62f12a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions test/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="NSubstitute" Version="5.1.0" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PackageReference Include="xunit" Version="2.8.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public ContinuousProfilerTests(ITestOutputHelper output)
}

[Fact]
public async void SubmitAllocationSamples()
public async Task SubmitAllocationSamples()
{
SetEnvironmentVariable("CORECLR_ENABLE_PROFILING", "1");
SetEnvironmentVariable("SPLUNK_PROFILER_MEMORY_ENABLED", "true");
Expand Down Expand Up @@ -82,7 +82,7 @@ public async void SubmitAllocationSamples()
}

[Fact]
public async void SubmitThreadSamples()
public async Task SubmitThreadSamples()
{
SetEnvironmentVariable("CORECLR_ENABLE_PROFILING", "1");
SetEnvironmentVariable("SPLUNK_PROFILER_ENABLED", "true");
Expand Down

0 comments on commit 62f12a3

Please sign in to comment.