diff --git a/eng/Versions.props b/eng/Versions.props
index 8cf2ac46aceb10..97c86222f1c7c9 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -100,8 +100,6 @@
10.0.0-beta.25367.101
10.0.0-beta.25367.101
10.0.0-beta.25367.101
-
- 1.4.0
6.0.0-preview.1.102
diff --git a/src/libraries/Common/tests/Extensions/TypeNameHelperTest.cs b/src/libraries/Common/tests/Extensions/TypeNameHelperTest.cs
index a187cfd4888a77..54f4d29387849e 100644
--- a/src/libraries/Common/tests/Extensions/TypeNameHelperTest.cs
+++ b/src/libraries/Common/tests/Extensions/TypeNameHelperTest.cs
@@ -176,7 +176,7 @@ public void Can_pretty_print_open_generics(Type type, bool fullName, string expe
Assert.Equal(expected, TypeNameHelper.GetTypeDisplayName(type, fullName));
}
- public static TheoryData GetTypeDisplayName_IncludesGenericParameterNamesWhenOptionIsSetData =>
+ public static TheoryData GetTypeDisplayName_IncludesGenericParameterNamesWhenOptionIsSetData =>
new TheoryData
{
{ typeof(B<>),"Microsoft.Extensions.Internal.TypeNameHelperTest+B" },
@@ -196,7 +196,7 @@ public void GetTypeDisplayName_IncludesGenericParameterNamesWhenOptionIsSet(Type
Assert.Equal(expected, actual);
}
- public static TheoryData GetTypeDisplayName_WithoutFullName_IncludesGenericParameterNamesWhenOptionIsSetData =>
+ public static TheoryData GetTypeDisplayName_WithoutFullName_IncludesGenericParameterNamesWhenOptionIsSetData =>
new TheoryData
{
{ typeof(B<>),"B" },
diff --git a/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Authentication.cs b/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Authentication.cs
index 430cfeb2d47295..d0f9ecc4feed5a 100644
--- a/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Authentication.cs
+++ b/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Authentication.cs
@@ -226,7 +226,7 @@ public static IEnumerable