]> git.basschouten.com Git - openhab-addons.git/commitdiff
Correctly disable unstable test (#11232)
authorKai Kreuzer <kai@openhab.org>
Thu, 9 Sep 2021 07:35:14 +0000 (09:35 +0200)
committerGitHub <noreply@github.com>
Thu, 9 Sep 2021 07:35:14 +0000 (09:35 +0200)
Signed-off-by: Kai Kreuzer <kai@openhab.org>
bundles/org.openhab.binding.homematic/src/test/java/org/openhab/binding/homematic/internal/communicator/virtual/ButtonDatapointTest.java

index be58072c3b202de4d2e360b69f21852e8ef01905..ca5498eb97019586b07e0cd7ba53f11628033311 100644 (file)
@@ -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);