Skip to content

Commit b35a9be

Browse files
authored
Merge pull request #547 from Shresth2725/fix-typo-repeatString-test
Fix typo: change '1 times' to '1 time' in repeatString test
2 parents 5bb11d7 + 2c0bee7 commit b35a9be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

06_repeatString/repeatString.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ describe('repeatString', () => {
77
test.skip('repeats the string many times', () => {
88
expect(repeatString('hello', 10)).toEqual('hellohellohellohellohellohellohellohellohellohello');
99
});
10-
test.skip('repeats the string 1 times', () => {
10+
test.skip('repeats the string 1 time', () => {
1111
expect(repeatString('hi', 1)).toEqual('hi');
1212
});
1313
test.skip('repeats the string 0 times', () => {

0 commit comments

Comments
 (0)