diff --git a/Directory.Packages.props b/Directory.Packages.props
index f01eb48133..51dec22d25 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -57,8 +57,8 @@
-
-
+
+
diff --git a/tests/CacheCompat/CommonCache.Test.Unit/CacheExecutionTests.cs b/tests/CacheCompat/CommonCache.Test.Unit/CacheExecutionTests.cs
index 5c6ebcd696..613542e70d 100644
--- a/tests/CacheCompat/CommonCache.Test.Unit/CacheExecutionTests.cs
+++ b/tests/CacheCompat/CommonCache.Test.Unit/CacheExecutionTests.cs
@@ -34,7 +34,7 @@ public static void AssemblyInit(TestContext testContext)
s_labUsers.Add(GetPublicAadUserDataAsync().GetAwaiter().GetResult());
}
- [DataTestMethod]
+ [TestMethod]
[DataRow(CacheProgramType.MsalV3, CacheProgramType.MsalV3, CacheStorageType.MsalV2, DisplayName = "MsalV3->MsalV3 msal v2 cache")]
[DataRow(CacheProgramType.MsalV3, CacheProgramType.MsalV3, CacheStorageType.MsalV3, DisplayName = "MsalV3->MsalV3 msal v3 cache")]
public async Task TestMsalV3CacheCompatibilityAsync(
@@ -46,7 +46,7 @@ public async Task TestMsalV3CacheCompatibilityAsync(
await executor.ExecuteAsync(interactiveType, silentType, CancellationToken.None).ConfigureAwait(false);
}
- [DataTestMethod]
+ [TestMethod]
[DataRow(CacheProgramType.MsalV3, CacheProgramType.MsalJava, CacheStorageType.MsalV3, DisplayName = "MsalV3->MsalJava msal v3 cache")]
[DataRow(CacheProgramType.MsalJava, CacheProgramType.MsalV3, CacheStorageType.MsalV3, DisplayName = "MsalJava->MsalV3 msal v3 cache")]
public async Task TestMsalJavaCacheCompatibilityAsync(
diff --git a/tests/CacheCompat/CommonCache.Test.Unit/ParallelizationSettings.cs b/tests/CacheCompat/CommonCache.Test.Unit/ParallelizationSettings.cs
new file mode 100644
index 0000000000..eae2596ae8
--- /dev/null
+++ b/tests/CacheCompat/CommonCache.Test.Unit/ParallelizationSettings.cs
@@ -0,0 +1,6 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+
+[assembly: DoNotParallelize]
diff --git a/tests/Microsoft.Identity.Test.Common/Core/Helpers/AssertException.cs b/tests/Microsoft.Identity.Test.Common/Core/Helpers/AssertException.cs
deleted file mode 100644
index 82f95c749e..0000000000
--- a/tests/Microsoft.Identity.Test.Common/Core/Helpers/AssertException.cs
+++ /dev/null
@@ -1,242 +0,0 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-using System;
-using System.Diagnostics;
-using System.Globalization;
-using System.Linq;
-using System.Threading.Tasks;
-using Microsoft.VisualStudio.TestTools.UnitTesting;
-
-namespace Microsoft.Identity.Test.Common.Core.Helpers
-{
- public static class AssertException
- {
- public static void DoesNotThrow(Action testCode)
- {
- var ex = Recorder.Exception(testCode);
- if (ex != null)
- {
- throw new AssertFailedException("DoesNotThrow failed - - an exception was thrown {ex}", ex);
- }
- }
-
- public static void DoesNotThrow(Func