From 30e94fb05bf210a08f85636fd231b934bba4a4b9 Mon Sep 17 00:00:00 2001 From: Melanie Sumner Date: Tue, 17 Jan 2023 17:38:35 -0600 Subject: [PATCH] Update normalise-path-test.js If merged, this PR corrects some spelling errors in a test. --- tests/unit/utils/normalise-path-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/utils/normalise-path-test.js b/tests/unit/utils/normalise-path-test.js index ba47dfb..ba096c8 100644 --- a/tests/unit/utils/normalise-path-test.js +++ b/tests/unit/utils/normalise-path-test.js @@ -9,12 +9,12 @@ module('Unit | Utility | normalise-path', function () { assert.equal(result, 'concepts/index'); }); - test('it doent do anything when there is no index', function (assert) { + test('it does not do anything when there is no index', function (assert) { let result = normalisePath('components', toc); assert.equal(result, 'components'); }); - test('it doent do anything when there is a url that doesnt exist in toc', function (assert) { + test('it does not do anything when there is a url that does not exist in toc', function (assert) { let result = normalisePath('blah', toc); assert.equal(result, 'blah'); });