Skip to content

Commit 2c0bee7

Browse files
committed
Fix typo: change '1 times' to '1 time' in repeatString test
1 parent 61c3de9 commit 2c0bee7

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)