From dd8ede6273819d8e893758434b2006a7ac82e5bf Mon Sep 17 00:00:00 2001 From: Justin Baur <19896123+justindbaur@users.noreply.github.com> Date: Wed, 22 Jan 2025 12:49:10 -0500 Subject: [PATCH] Update to GA --- .../DatabaseDataAttribute.cs | 8 ++++---- .../Infrastructure.IntegrationTest.csproj | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/Infrastructure.IntegrationTest/DatabaseDataAttribute.cs b/test/Infrastructure.IntegrationTest/DatabaseDataAttribute.cs index 5171cc0691..1a20166375 100644 --- a/test/Infrastructure.IntegrationTest/DatabaseDataAttribute.cs +++ b/test/Infrastructure.IntegrationTest/DatabaseDataAttribute.cs @@ -35,14 +35,14 @@ public class DatabaseDataAttribute : DataAttribute TheoryDataRowBase theory; - if (!isEnabled) + if (isEnabled) { - theory = new TheoryDataRow() - .WithSkip("Not Enabled"); + theory = new ServiceTheoryDataRow(testMethod, disposalTracker, customizationContext); } else { - theory = new ServiceTheoryDataRow(testMethod, disposalTracker, customizationContext); + theory = new TheoryDataRow() + .WithSkip("Not Enabled"); } theory diff --git a/test/Infrastructure.IntegrationTest/Infrastructure.IntegrationTest.csproj b/test/Infrastructure.IntegrationTest/Infrastructure.IntegrationTest.csproj index 576c413135..92d9f5fa9a 100644 --- a/test/Infrastructure.IntegrationTest/Infrastructure.IntegrationTest.csproj +++ b/test/Infrastructure.IntegrationTest/Infrastructure.IntegrationTest.csproj @@ -13,8 +13,8 @@ - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all