Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
SleeplessByte committed Dec 24, 2020
1 parent 98204ea commit 316084d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/roman-numerals/roman-numerals.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('toRoman()', () => {
xtest('converts 9', () => expect(toRoman(9)).toEqual('IX'));
xtest('converts 27', () => expect(toRoman(27)).toEqual('XXVII'));
xtest('converts 48', () => expect(toRoman(48)).toEqual('XLVIII'));
xtest('converts 49', () => expect(toRoman(48)).toEqual('XLIX'));
xtest('converts 49', () => expect(toRoman(49)).toEqual('XLIX'));
xtest('converts 59', () => expect(toRoman(59)).toEqual('LIX'));
xtest('converts 93', () => expect(toRoman(93)).toEqual('XCIII'));
xtest('converts 141', () => expect(toRoman(141)).toEqual('CXLI'));
Expand Down

0 comments on commit 316084d

Please sign in to comment.