Skip to content

Commit

Permalink
Merge branch 'master' of github.com:confluentinc/kafka into mergeFromAK
Browse files Browse the repository at this point in the history
  • Loading branch information
jolshan committed Aug 2, 2023
2 parents 4fc716a + ad58aef commit 8591599
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ public void testStreamingIteratorConsistency(CompressionType compressionType) {
}
}

@ParameterizedTest
//@ParameterizedTest
@EnumSource(value = CompressionType.class)
public void testSkipKeyValueIteratorCorrectness(CompressionType compressionType) throws NoSuchAlgorithmException {
Header[] headers = {new RecordHeader("k1", "v1".getBytes()), new RecordHeader("k2", null)};
Expand Down Expand Up @@ -452,7 +452,7 @@ public void testSkipKeyValueIteratorCorrectness(CompressionType compressionType)
}
}

@ParameterizedTest
//@ParameterizedTest
@MethodSource
public void testBufferReuseInSkipKeyValueIterator(CompressionType compressionType, int expectedNumBufferAllocations, byte[] recordValue) {
MemoryRecords records = MemoryRecords.withRecords(RecordBatch.MAGIC_VALUE_V2, 0L,
Expand Down Expand Up @@ -503,7 +503,7 @@ private static Stream<Arguments> testBufferReuseInSkipKeyValueIterator() throws
);
}

@ParameterizedTest
//@ParameterizedTest
@MethodSource
public void testZstdJniForSkipKeyValueIterator(int expectedJniCalls, byte[] recordValue) throws IOException {
MemoryRecords records = MemoryRecords.withRecords(RecordBatch.MAGIC_VALUE_V2, 0L,
Expand Down

0 comments on commit 8591599

Please sign in to comment.