NIFI-11903 disable if windows

This commit is contained in:
Joseph Witt 2023-08-02 16:04:22 -07:00
parent 49a350a765
commit 490810452c
No known key found for this signature in database
GPG Key ID: 9093BF854F811A1A
1 changed files with 3 additions and 0 deletions

View File

@ -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;