We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d84e6c commit 03b849fCopy full SHA for 03b849f
exercises/153-isRotated/test.js
@@ -22,9 +22,9 @@ test('The function should return true or false if there is one of the 2 given st
22
});
23
24
test('The function should return true or false if there is one of the 2 given strings rotated.', () => {
25
- expect(isRotated('Learning is fun', 'Lr aen ngiiufs')).toBe(true);
+ expect(isRotated('Learning is fun', 'Lr aen ngiiufs')).toBe(false);
26
27
28
29
- expect(isRotated('Work from Home', 'kfmoemro Hor W')).toBe(true);
+ expect(isRotated('Work from Home', ' HomeWork from')).toBe(true);
30
0 commit comments