NIFI-11903 disable if windows (#7566)

This commit is contained in:
Joe Witt 2023-09-19 13:22:49 -07:00 committed by GitHub
parent 520840d93b
commit 017b16254b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;