TheOdinProject / javascript-exercises

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Caesar

Faisal-523 opened this issue · comments

Expected answer for the below test is incorrect.

xit('works with large negative shift factors', function() {
expect(caesar('Hello, World!', -29)).toEqual('Ebiil, Tloia!');

Correct answer should be 'Ebiil, Tloia!'

Edit: This is not an issue. My understanding was not correct.
Please close this issue.