From 0d751ac6d71d8fa564e885c367d27d2ac4764e16 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 12:22:05 +0000 Subject: [PATCH 1/2] Bump xunit from 2.5.0 to 2.5.1 Bumps [xunit](https://github.com/xunit/xunit) from 2.5.0 to 2.5.1. - [Commits](https://github.com/xunit/xunit/compare/2.5.0...2.5.1) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- test/Directory.Packages.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Directory.Packages.props b/test/Directory.Packages.props index 6aac90e66f..7605249aa3 100644 --- a/test/Directory.Packages.props +++ b/test/Directory.Packages.props @@ -51,7 +51,7 @@ - + From 532747d32c2ab8756e6256a172611e2ebbcfcb61 Mon Sep 17 00:00:00 2001 From: Paulo Janotti Date: Mon, 18 Sep 2023 12:35:39 -0700 Subject: [PATCH 2/2] Fix error xUnit1030 Test methods should not call ConfigureAwait(), as it may bypass parallelization limits. --- test/IntegrationTests/LogTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/IntegrationTests/LogTests.cs b/test/IntegrationTests/LogTests.cs index 7b840d96df..33b231981d 100644 --- a/test/IntegrationTests/LogTests.cs +++ b/test/IntegrationTests/LogTests.cs @@ -83,7 +83,7 @@ public async Task EnableLogsWithCLRAndHostingStartup() RunTestApplication(); // wait for fixed amount of time for logs to be collected before asserting - await Task.Delay(TimeSpan.FromSeconds(10)).ConfigureAwait(false); + await Task.Delay(TimeSpan.FromSeconds(10)); collector.AssertCollected(); }