From c56f6c161ecf6fe55a06952ab7a344879ee90d3a Mon Sep 17 00:00:00 2001 From: Lars-Erik Aabech Date: Tue, 15 Oct 2019 23:57:54 +0200 Subject: [PATCH] Don't throw when type not found by TestOptionAttribute --- src/Umbraco.Tests/Testing/TestOptionAttributeBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Tests/Testing/TestOptionAttributeBase.cs b/src/Umbraco.Tests/Testing/TestOptionAttributeBase.cs index a46d29180f..dd92edd7e7 100644 --- a/src/Umbraco.Tests/Testing/TestOptionAttributeBase.cs +++ b/src/Umbraco.Tests/Testing/TestOptionAttributeBase.cs @@ -31,7 +31,7 @@ namespace Umbraco.Tests.Testing var test = TestContext.CurrentContext.Test; var typeName = test.ClassName; var methodName = test.MethodName; - var type = Type.GetType(typeName, true); + var type = Type.GetType(typeName, false); if (type == null) { type = ScanAssemblies