mirror of https://github.com/apache/nifi.git
NIFI-11903 disable if windows (#7566)
This commit is contained in:
parent
520840d93b
commit
017b16254b
|
@ -28,6 +28,7 @@ import org.apache.zookeeper.server.quorum.QuorumPeerConfig.ConfigException;
|
|||
import org.junit.jupiter.api.AfterAll;
|
||||
import org.junit.jupiter.api.BeforeAll;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.condition.DisabledOnOs;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.PrintWriter;
|
||||
|
@ -40,7 +41,9 @@ import java.util.Properties;
|
|||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
import static org.junit.jupiter.api.condition.OS.WINDOWS;
|
||||
|
||||
@DisabledOnOs(WINDOWS)
|
||||
public class TestZooKeeperStateServer {
|
||||
|
||||
private static ZooKeeperStateServer zkServer;
|
||||
|
|
Loading…
Reference in New Issue