Skip to content

Commit c27ae4b

Browse files
committed
Running format.mjs
1 parent 48481c8 commit c27ae4b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

exercises/practice/high-scores/high-scores.spec.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,28 +46,28 @@ describe('High Scores Test Suite', () => {
4646
xtest('Latest score after personal top scores', () => {
4747
const input = [70, 50, 20, 30];
4848
const highScores = new HighScores(input);
49-
highScores.personalTopThree;
49+
highScores.personalTopThree;
5050
expect(highScores.latest).toEqual(30);
5151
});
52-
52+
5353
xtest('Scores after personal top scores', () => {
5454
const input = [30, 50, 20, 70];
5555
const highScores = new HighScores(input);
56-
highScores.personalTopThree;
56+
highScores.personalTopThree;
5757
expect(highScores.scores).toEqual(input);
5858
});
5959

6060
xtest('Latest score after personal best', () => {
6161
const input = [20, 70, 15, 25, 30];
6262
const highScores = new HighScores(input);
63-
highScores.personalBest;
63+
highScores.personalBest;
6464
expect(highScores.latest).toEqual(30);
6565
});
6666

6767
xtest('Scores after personal best', () => {
6868
const input = [20, 70, 15, 25, 30];
6969
const highScores = new HighScores(input);
70-
highScores.personalBest;
70+
highScores.personalBest;
7171
expect(highScores.scores).toEqual(input);
7272
});
7373
});

0 commit comments

Comments
 (0)