From 8425ea33dc18bec5914eb6364c79e369f6e884dd Mon Sep 17 00:00:00 2001 From: chillu Date: Sat, 14 Dec 2024 22:02:42 +0100 Subject: [PATCH] fix: applier debug test refactor --- ModiBuff/ModiBuff.Tests/ApplierTests.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ModiBuff/ModiBuff.Tests/ApplierTests.cs b/ModiBuff/ModiBuff.Tests/ApplierTests.cs index eee55a9..610543f 100644 --- a/ModiBuff/ModiBuff.Tests/ApplierTests.cs +++ b/ModiBuff/ModiBuff.Tests/ApplierTests.cs @@ -193,12 +193,11 @@ public void ModifierDoesntExist() } [Test] - public void ApplierDoesntExist() - { #if !DEBUG - Setup(); - Assert.Ignore("This test is only for debug mode"); + [Ignore("This test is only for debug mode. Skipping test")] #endif + public void ApplierDoesntExist() + { Setup(); Assert.Throws(() => _ = new ApplierEffect("NonExistentApplier"));