From ca4c22aa2450693e83352f43a441198246210e6a Mon Sep 17 00:00:00 2001 From: Austin Bennett Date: Thu, 23 Jul 2026 12:20:14 -0500 Subject: [PATCH] Remove the temporary gate probe Confirmed: the run failed at the Test step and the registry digest was unchanged, so a failing test now stops the image being published. --- .../java/com/itsthevine/web/GateProbeTest.java | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/test/java/com/itsthevine/web/GateProbeTest.java diff --git a/src/test/java/com/itsthevine/web/GateProbeTest.java b/src/test/java/com/itsthevine/web/GateProbeTest.java deleted file mode 100644 index a6b9440..0000000 --- a/src/test/java/com/itsthevine/web/GateProbeTest.java +++ /dev/null @@ -1,14 +0,0 @@ -package com.itsthevine.web; - -import static org.assertj.core.api.Assertions.assertThat; - -import org.junit.jupiter.api.Test; - -/** TEMPORARY: proves a failing test actually stops the image being published. Removed immediately. */ -class GateProbeTest { - - @Test - void deliberatelyFails() { - assertThat("the gate").isEqualTo("proved"); - } -}