Skip to content

Commit

Permalink
concept/lasagna: change last totalTimeInMinutes test to use distinct …
Browse files Browse the repository at this point in the history
…values from the first test to make them harder to confuse
  • Loading branch information
IsaacG committed Feb 16, 2024
1 parent 27677be commit 9b5998a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/concept/lasagna/lasagna.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ describe('totalTimeInMinutes', () => {
test('calculates the total cooking time', () => {
expect(totalTimeInMinutes(1, 5)).toBe(7);
expect(totalTimeInMinutes(4, 15)).toBe(23);
expect(totalTimeInMinutes(1, 35)).toBe(37);
expect(totalTimeInMinutes(1, 30)).toBe(32);
});
});

0 comments on commit 9b5998a

Please sign in to comment.