Skip to content

Commit

Permalink
fixed test after changing f07ef0e
Browse files Browse the repository at this point in the history
  • Loading branch information
overheadhunter committed Nov 29, 2024
1 parent 56dc34e commit dd3ac84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit dd3ac84

Please sign in to comment.