diff --git a/test/common/util.js b/test/common/util.js index 52a604cd..e87061c4 100644 --- a/test/common/util.js +++ b/test/common/util.js @@ -42,7 +42,7 @@ test('kebabToCamelCase: args', (t) => { }); test('kebabToCamelCase', (t) => { - t.equal(kebabToCamelCase('hello-world'), 'HelloWorld', 'should convert kebab to camel caes'); + t.equal(kebabToCamelCase('hello-world'), 'HelloWorld', 'should convert kebab to camel case'); t.end(); });