Skip to content

Commit 5324060

Browse files
author
alxklm
committed
Naming: fix method name
1 parent 58d41ac commit 5324060

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/sorts/WaveSortTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ record InputData(Integer[] array) {
1212

1313
@ParameterizedTest
1414
@MethodSource("inputStream")
15-
public void testWaveSortMixedPositiveNegativeZero(InputData inputData) {
15+
public void test(InputData inputData) {
1616
WaveSort waveSort = new WaveSort();
1717
assertTrue(waveSort.isWaveSorted(waveSort.sort(inputData.array)));
1818
}

0 commit comments

Comments
 (0)