Skip to content

Commit

Permalink
Merge pull request #15203 from unoplatform/Youssef1313/hr-test-cleanup
Browse files Browse the repository at this point in the history
test: Make HR test cleanup `void` instead of `async Task`
  • Loading branch information
jeromelaban authored Jan 31, 2024
2 parents be7c2e9 + 85fe9be commit 7e843d5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,10 @@ public async Task Initialize()
}

[TestCleanup]
public async Task TestCleanupWrapper()
public void TestCleanupWrapper()
{
_testAppProcess?.Kill();
_testAppProcess?.WaitForExit();
}

public static async Task InitializeServer()
Expand Down

0 comments on commit 7e843d5

Please sign in to comment.