diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index a861f422a0132f..b3ce70f00c37d4 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -146,9 +146,9 @@
https://github.com/dotnet/runtime-assets
971b917c6c2061ea6a747f0345ac86882c02c466
-
+
https://github.com/dotnet/runtime-assets
- 971b917c6c2061ea6a747f0345ac86882c02c466
+ 2e12dc95e1c286961eaea774cf26c1f29098fb43
https://github.com/dotnet/runtime-assets
diff --git a/eng/Versions.props b/eng/Versions.props
index da324b40bb35bb..8b18e68d7f96d2 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -132,7 +132,7 @@
7.0.0-beta.22179.2
7.0.0-beta.22179.2
7.0.0-beta.22179.2
- 7.0.0-beta.22179.2
+ 7.0.0-beta.22213.1
7.0.0-beta.22179.2
7.0.0-beta.22179.2
7.0.0-beta.22179.2
diff --git a/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamNetworkStreamTest.cs b/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamNetworkStreamTest.cs
index b943947d28b278..7264e322d44718 100644
--- a/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamNetworkStreamTest.cs
+++ b/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamNetworkStreamTest.cs
@@ -492,17 +492,10 @@ await TestConfiguration.WhenAllOrAnyFailedWithTimeout(
}
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.SupportsTls13))]
- [ActiveIssue("https://github.com/dotnet/runtime/issues/58927", TestPlatforms.Windows)]
[InlineData(true)]
[InlineData(false)]
public async Task SslStream_NegotiateClientCertificateAsyncTls13_Succeeds(bool sendClientCertificate)
{
- if (PlatformDetection.IsWindows10Version22000OrGreater)
- {
- // [ActiveIssue("https://github.com/dotnet/runtime/issues/58927")]
- throw new SkipTestException("Unstable on Windows 11");
- }
-
bool negotiateClientCertificateCalled = false;
using CancellationTokenSource cts = new CancellationTokenSource();
cts.CancelAfter(TestConfiguration.PassingTestTimeout);
diff --git a/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamStreamToStreamTest.cs b/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamStreamToStreamTest.cs
index bc8e3cf471b3f3..083c3cde51d608 100644
--- a/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamStreamToStreamTest.cs
+++ b/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamStreamToStreamTest.cs
@@ -72,12 +72,6 @@ public static IEnumerable