From: Kai Kreuzer Date: Thu, 9 Sep 2021 07:35:14 +0000 (+0200) Subject: Correctly disable unstable test (#11232) X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=195d532aa770aa69e78d103322fabe4a0295f96f;p=openhab-addons.git Correctly disable unstable test (#11232) Signed-off-by: Kai Kreuzer --- diff --git a/bundles/org.openhab.binding.homematic/src/test/java/org/openhab/binding/homematic/internal/communicator/virtual/ButtonDatapointTest.java b/bundles/org.openhab.binding.homematic/src/test/java/org/openhab/binding/homematic/internal/communicator/virtual/ButtonDatapointTest.java index be58072c3b..ca5498eb97 100644 --- a/bundles/org.openhab.binding.homematic/src/test/java/org/openhab/binding/homematic/internal/communicator/virtual/ButtonDatapointTest.java +++ b/bundles/org.openhab.binding.homematic/src/test/java/org/openhab/binding/homematic/internal/communicator/virtual/ButtonDatapointTest.java @@ -17,8 +17,8 @@ import static org.hamcrest.MatcherAssert.assertThat; import java.io.IOException; -import org.junit.Ignore; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.openhab.binding.homematic.internal.misc.HomematicClientException; import org.openhab.binding.homematic.internal.misc.HomematicConstants; @@ -93,7 +93,7 @@ public class ButtonDatapointTest extends JavaTest { } @Test - @Ignore(value = "Test is unstable see #10753") + @Disabled(value = "Test is unstable see #10753") public void testDoublePress() throws IOException, HomematicClientException, InterruptedException { HmDatapoint shortPressDp = createPressDatapoint("PRESS_SHORT", Boolean.TRUE); HmDatapoint buttonVirtualDatapoint = getButtonVirtualDatapoint(shortPressDp);