From 445b6b4b0a4e1f2cef445f3f0128d3da06548215 Mon Sep 17 00:00:00 2001 From: Ludy87 Date: Sun, 10 Aug 2025 12:29:57 +0200 Subject: [PATCH] Update CustomColorReplaceStrategyTest.java --- .../common/util/misc/CustomColorReplaceStrategyTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/common/src/test/java/stirling/software/common/util/misc/CustomColorReplaceStrategyTest.java b/app/common/src/test/java/stirling/software/common/util/misc/CustomColorReplaceStrategyTest.java index 4ea57e92f..6d7d7efda 100644 --- a/app/common/src/test/java/stirling/software/common/util/misc/CustomColorReplaceStrategyTest.java +++ b/app/common/src/test/java/stirling/software/common/util/misc/CustomColorReplaceStrategyTest.java @@ -6,6 +6,7 @@ import static org.junit.jupiter.api.Assertions.assertNotNull; import java.io.IOException; import java.lang.reflect.Method; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.mock.web.MockMultipartFile; @@ -102,7 +103,7 @@ class CustomColorReplaceStrategyTest { } catch (Exception e) { // If we get here, the test failed - org.junit.jupiter.api.Assertions.fail("Exception occurred: " + e.getMessage()); + Assertions.fail("Exception occurred: " + e.getMessage()); } } }