Skip to content

Commit a58283c

Browse files
renamed spec for QuickSelect from QuiSelectTest to QuiSelectTest
1 parent 326b210 commit a58283c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/io/github/marioluan/algorithms/sorting/QuiSelectTest.java renamed to src/test/java/io/github/marioluan/algorithms/sorting/QuickSelectTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
@SuppressWarnings("rawtypes")
1919
@RunWith(Spectrum.class)
20-
public class QuiSelectTest {
20+
public class QuickSelectTest {
2121

2222
private static final Random RANDOM = new Random();
2323
private Comparable[] array = null;
@@ -26,7 +26,7 @@ public class QuiSelectTest {
2626
private int k = -1;
2727

2828
{
29-
describe("MergeSortRecursive", () -> {
29+
describe("QuickSelect", () -> {
3030
describe(".select", () -> {
3131

3232
describe("when array is small", () -> {

0 commit comments

Comments
 (0)