Skip to content

Commit a301edf

Browse files
authored
Update HighScoresTest.java
1 parent ab74222 commit a301edf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

exercises/practice/high-scores/src/test/java/HighScoresTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public void shouldReturnPersonalTopThreeFromListOfScores() {
4141

4242
@Test
4343
@Disabled("Remove to run test")
44-
@DisplayName("")
44+
@DisplayName("Personal top highest to lowest")
4545
public void shouldReturnPersonalTopThreeSortedHighestToLowest() {
4646
HighScores highScores = new HighScores(Arrays.asList(20, 10, 30));
4747
assertThat(highScores.personalTopThree()).isEqualTo(Arrays.asList(30, 20, 10));

0 commit comments

Comments
 (0)