diff --git a/.idea/.idea.TUnit/.idea/workspace.xml b/.idea/.idea.TUnit/.idea/workspace.xml
index 82352ed992..80e9f39bf6 100644
--- a/.idea/.idea.TUnit/.idea/workspace.xml
+++ b/.idea/.idea.TUnit/.idea/workspace.xml
@@ -54,15 +54,21 @@
-
-
+
+
+
+
+
+
+
+
- {
+ "keyToString": {
+ "node.js.selected.package.tslint": "(autodetect)"
}
-}]]>
+}
diff --git a/TUnit.Core/StaticPropertyReflectionInitializer.cs b/TUnit.Core/StaticPropertyReflectionInitializer.cs
index 72bcca272c..aa31ab09ed 100644
--- a/TUnit.Core/StaticPropertyReflectionInitializer.cs
+++ b/TUnit.Core/StaticPropertyReflectionInitializer.cs
@@ -124,12 +124,6 @@ private static async Task InitializeStaticProperty(Type type, PropertyInfo prope
// Set the property value
property.SetValue(null, value);
- // Initialize the value if it's an object
- if (value != null)
- {
- await ObjectInitializer.InitializeAsync(value);
- }
-
// Only use the first value for static properties
break;
}
diff --git a/TUnit.Core/TestContext.cs b/TUnit.Core/TestContext.cs
index c32c5f1e9c..62bc086615 100644
--- a/TUnit.Core/TestContext.cs
+++ b/TUnit.Core/TestContext.cs
@@ -316,7 +316,7 @@ public async Task ReregisterTestWithArguments(object?[]? methodArguments = null,
internal AbstractExecutableTest InternalExecutableTest { get; set; } = null!;
- internal HashSet