From ea215f154b22e299ef4fcff9e23dad60da6bda03 Mon Sep 17 00:00:00 2001 From: Justin Baur <19896123+justindbaur@users.noreply.github.com> Date: Wed, 29 Jan 2025 14:06:38 -0500 Subject: [PATCH] Follow Builder Pattern --- test/Infrastructure.IntegrationTest/DatabaseDataAttribute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Infrastructure.IntegrationTest/DatabaseDataAttribute.cs b/test/Infrastructure.IntegrationTest/DatabaseDataAttribute.cs index 1a20166375..b2f472f0bd 100644 --- a/test/Infrastructure.IntegrationTest/DatabaseDataAttribute.cs +++ b/test/Infrastructure.IntegrationTest/DatabaseDataAttribute.cs @@ -45,7 +45,7 @@ public class DatabaseDataAttribute : DataAttribute .WithSkip("Not Enabled"); } - theory + theory = theory .WithTrait("DbType", customizationContext.Database.Type.ToString()) .WithTestDisplayName($"{testMethod.Name}[{customizationContext.Database.Name ?? customizationContext.Database.Type.ToString()}]");