generated from JustArchiNET/ASF-PluginTemplate
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix(tests): Replace
ConfigureAwait(false)
with ConfigureAwait(true)
The xUnit analyzer (xUnit1030) recommends against using `ConfigureAwait(false)` in test methods, as it can negatively impact test parallelization. This commit addresses the analyzer warnings by replacing all instances of `ConfigureAwait(false)` with `ConfigureAwait(true)` within test methods. This ensures tests are executed in a way that respects parallelization limits and aligns with xUnit best practices for asynchronous testing. This change should resolve the reported build warnings and potentially improve test execution reliability.
- Loading branch information
Showing
4 changed files
with
24 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters