diff --git a/native/src/test/java/com/velocitypowered/natives/compression/VelocityCompressorTest.java b/native/src/test/java/com/velocitypowered/natives/compression/VelocityCompressorTest.java index 98533c848..2bc657b0f 100644 --- a/native/src/test/java/com/velocitypowered/natives/compression/VelocityCompressorTest.java +++ b/native/src/test/java/com/velocitypowered/natives/compression/VelocityCompressorTest.java @@ -33,13 +33,13 @@ class VelocityCompressorTest { } @Test - @EnabledOnOs({MAC, LINUX}) + @EnabledOnOs({LINUX}) void sanityCheckNative() { assertThrows(IllegalArgumentException.class, () -> Natives.compress.get().create(-42)); } @Test - @EnabledOnOs({MAC, LINUX}) + @EnabledOnOs({LINUX}) void nativeIntegrityCheck() throws DataFormatException { VelocityCompressor compressor = Natives.compress.get().create(Deflater.DEFAULT_COMPRESSION); if (compressor.preferredBufferType() != BufferPreference.DIRECT_REQUIRED) {