diff --git a/src/test/java/org/cryptomator/cryptolib/v1/FileContentCryptorImplTest.java b/src/test/java/org/cryptomator/cryptolib/v1/FileContentCryptorImplTest.java index 2d13e23..dd66cb2 100644 --- a/src/test/java/org/cryptomator/cryptolib/v1/FileContentCryptorImplTest.java +++ b/src/test/java/org/cryptomator/cryptolib/v1/FileContentCryptorImplTest.java @@ -88,7 +88,7 @@ public class Encryption { @DisplayName("encrypt chunk with invalid size") @ParameterizedTest(name = "cleartext size: {0}") - @ValueSource(ints = {0, Constants.PAYLOAD_SIZE + 1}) + @ValueSource(ints = {Constants.PAYLOAD_SIZE + 1}) public void testEncryptChunkOfInvalidSize(int size) { ByteBuffer cleartext = ByteBuffer.allocate(size);