Added space after comma

This commit is contained in:
Omkarnath Parida
2021-10-03 21:20:53 +05:30
parent 63ceac0925
commit e0c5d494ae

View File

@ -2,10 +2,10 @@ import { trap } from '../TrappingRainWater'
describe('TrappingRainWater', () => { describe('TrappingRainWater', () => {
it('expects 6 units of rain water are being trapped', () => { it('expects 6 units of rain water are being trapped', () => {
expect(trap([0,1,0,2,1,0,1,3,2,1,2,1])).toBe(6) expect(trap([0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1])).toBe(6)
}) })
it('expects 9 units of rain water are being trapped', () => { it('expects 9 units of rain water are being trapped', () => {
expect(trap([4,2,0,3,2,5])).toBe(9) expect(trap([4, 2, 0, 3, 2, 5])).toBe(9)
}) })
}) })