Skip to content

Commit

Permalink
Correctly disable unstable test (openhab#11232)
Browse files Browse the repository at this point in the history
Signed-off-by: Kai Kreuzer <kai@openhab.org>
  • Loading branch information
kaikreuzer authored and volkmarnissen committed Feb 17, 2022
1 parent 7746d01 commit fee485f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

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;
Expand Down Expand Up @@ -93,7 +93,7 @@ public void testUnsupportedEvents() throws IOException, HomematicClientException
}

@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);
Expand Down

0 comments on commit fee485f

Please sign in to comment.