Skip to content

Commit 0427f98

Browse files
committed
fix typos in tests
1 parent 5d23782 commit 0427f98

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

starter-code/tests/FunctionsAndArraysSpec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ describe('Unique Arrays - uniquifyArray', function () {
133133
expect(uniquifyArray(['Ironhack', 'Ironhack', 'Ironhack'])).toEqual(['Ironhack']);
134134
});
135135

136-
it('returns the same array when no element is repeted', function () {
136+
it('returns the same array when no element is repeated', function () {
137137
expect(uniquifyArray(['Cat', 'Dog', 'Cow'])).toEqual(['Cat', 'Dog', 'Cow']);
138138
});
139139

@@ -164,7 +164,7 @@ describe('Finding Elements - doesWordExist', function () {
164164
});
165165
});
166166

167-
describe('Counting Repetion - howManyTimes', function () {
167+
describe('Counting Repetition - howManyTimes', function () {
168168
it('Defines howManyTimes', function () {
169169
expect(typeof howManyTimes).toBe('function');
170170
});
@@ -186,7 +186,7 @@ describe('Counting Repetion - howManyTimes', function () {
186186
});
187187
});
188188

189-
describe('Counting Repetion - greatestProduct', function () {
189+
describe('Bonus Quest - greatestProduct', function () {
190190
it('Defines greatestProduct', function () {
191191
expect(typeof greatestProduct).toBe('function');
192192
});

0 commit comments

Comments
 (0)