Skip to content

Commit 0196f1e

Browse files
fix: Fix test name uniqueness (#8091)
1 parent efe39cc commit 0196f1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

communication/src/test/java/datadog/communication/serialization/IntPackingTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private static long[] random(int size) {
9292
return random;
9393
}
9494

95-
@ParameterizedTest
95+
@ParameterizedTest(name = "Input case {index}")
9696
@MethodSource("inputs")
9797
public void packLongs(long[] input) {
9898
ByteBuffer buffer = ByteBuffer.allocate(input.length * 9 + 10);
@@ -116,7 +116,7 @@ public void packLongs(long[] input) {
116116
messageFormatter.flush();
117117
}
118118

119-
@ParameterizedTest
119+
@ParameterizedTest(name = "Input case {index}")
120120
@MethodSource("inputs")
121121
public void packInts(long[] input) {
122122
final int[] asInts = new int[input.length];

0 commit comments

Comments
 (0)