Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef1313 committed Jan 14, 2025
1 parent 180f7a5 commit 0959ede
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/IntegrationTests/MSTest.IntegrationTests/OutputTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ public class OutputTests : CLITestBase
{
private const string TestAssetName = "OutputTestProject";

public void OutputIsNotMixedWhenTestsRunInParallel() => ValidateOutputForClass("UnitTest1");
public async Task OutputIsNotMixedWhenTestsRunInParallel() => await ValidateOutputForClass("UnitTest1");

public void OutputIsNotMixedWhenAsyncTestsRunInParallel() => ValidateOutputForClass("UnitTest2");
public async Task OutputIsNotMixedWhenAsyncTestsRunInParallel() => await ValidateOutputForClass("UnitTest2");

private static async Task ValidateOutputForClass(string className)
{
Expand Down

0 comments on commit 0959ede

Please sign in to comment.