Skip to content

Commit ca5617f

Browse files
committed
Prettier format
1 parent cb1f062 commit ca5617f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

exercises/practice/roman-numerals/roman-numerals.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ describe('toRoman()', () => {
2727
xtest('converts 1666', () => expect(toRoman(1666)).toEqual('MDCLXVI'));
2828
xtest('converts 3000', () => expect(toRoman(3000)).toEqual('MMM'));
2929
xtest('converts 3001', () => expect(toRoman(3001)).toEqual('MMMI'));
30-
xtest('converts 3888', () => expect(toRoman(3888)).toEqual('MMMDCCCLXXXVIII'));
30+
xtest('converts 3888', () =>
31+
expect(toRoman(3888)).toEqual('MMMDCCCLXXXVIII'));
3132
xtest('converts 3999', () => expect(toRoman(3999)).toEqual('MMMCMXCIX'));
3233
});

0 commit comments

Comments
 (0)