From dd3ac8492209f077cf6a87bdac5a9145891839a9 Mon Sep 17 00:00:00 2001 From: Sebastian Stenzel Date: Fri, 29 Nov 2024 15:27:03 +0100 Subject: [PATCH] fixed test after changing f07ef0e --- .../cryptomator/cryptolib/v1/FileContentCryptorImplTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);