Skip to content

Commit 04126b9

Browse files
committed
ci
1 parent 004d5c1 commit 04126b9

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/FastCloner.Tests/ConcurrentTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace FastCloner.Tests;
55

6-
[NotInParallel("FastClonerGlobalState")]
6+
[NotInParallel]
77
public class ConcurrentTests(int maxRecursionDepth) : BaseTestFixture(maxRecursionDepth)
88
{
99
private class TestClass

src/FastCloner.Tests/CopyToObjectTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ public async Task Class_With_Subclass_Should_Be_Deep_CLoned()
521521
}
522522

523523
[Test]
524-
[NotInParallel("FastClonerGlobalState")]
524+
[NotInParallel]
525525
public async Task DeepCloneTo_RuntimeMutations_ReflectAndRestoreOnConfiguredRail()
526526
{
527527
C1 shared = new C1 { A = 12, B = "shared" };

src/FastCloner.Tests/SpecialCaseTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1861,7 +1861,7 @@ public async Task Issue27_Clone_Entity_With_EventHandlers_Does_Not_Deep_Clone_De
18611861
}
18621862

18631863
[Test]
1864-
[NotInParallel("FastClonerGlobalState")]
1864+
[NotInParallel]
18651865
public async Task Issue27_Clone_Entity_With_Ignored_EventHandlers_Nulls_Delegates()
18661866
{
18671867
// Arrange - user opts to ignore event handler types (OP's preferred workaround)
@@ -1896,7 +1896,7 @@ public async Task Issue27_Clone_Entity_With_Ignored_EventHandlers_Nulls_Delegate
18961896
}
18971897

18981898
[Test]
1899-
[NotInParallel("FastClonerGlobalState")]
1899+
[NotInParallel]
19001900
public async Task Issue27_Clone_Entity_With_Ignored_EventHandlers_After_PreWarm_Nulls_Delegates()
19011901
{
19021902
MvvmEntity original = new MvvmEntity { Name = "Test", Value = 42 };
@@ -3135,7 +3135,7 @@ public async Task FontCloningTest()
31353135

31363136

31373137
[Test]
3138-
[NotInParallel("FastClonerGlobalState")]
3138+
[NotInParallel]
31393139
public async Task Lazy_Clone()
31403140
{
31413141
LazyClass.Counter = 0;

src/FastCloner.Tests/TypeBehaviorTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Threading.Tasks;
44

55
namespace FastCloner.Tests;
6-
[NotInParallel("FastClonerGlobalState")]
6+
[NotInParallel]
77
public class TypeBehaviorTests(int maxRecursionDepth) : BaseTestFixture(maxRecursionDepth)
88
{
99
public class SimpleClass

0 commit comments

Comments
 (0)