From cd6baaea257d6c7c8aeb60c29bd273e885907b7c Mon Sep 17 00:00:00 2001 From: Josh Chester Date: Sat, 24 Jan 2026 01:15:52 -0600 Subject: [PATCH] fiddle --- src/test/java/com/softwaresmyth/functions/NoopTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/softwaresmyth/functions/NoopTest.java b/src/test/java/com/softwaresmyth/functions/NoopTest.java index cc637b9..5516b3f 100644 --- a/src/test/java/com/softwaresmyth/functions/NoopTest.java +++ b/src/test/java/com/softwaresmyth/functions/NoopTest.java @@ -15,6 +15,7 @@ class NoopTest { void TestOneArg() { Consumer toTest = OrNot::noop; toTest.accept("Ignored"); + Assertions.fail("test failure"); } /** @@ -24,7 +25,6 @@ class NoopTest { void TestTwoArg() { BiConsumer toTest = OrNot::noop; toTest.accept(0.0, false); - Assertions.fail("test failure"); } } \ No newline at end of file