From 54ba1f15b6d8e83a080b73490df07246650407ad Mon Sep 17 00:00:00 2001 From: Ger Hobbelt Date: Mon, 15 Apr 2019 23:22:47 +0200 Subject: [PATCH] spelling correction for #470 test descriptions --- test/issues/0470.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/test/issues/0470.js b/test/issues/0470.js index 13d2a6c6..013b1cca 100644 --- a/test/issues/0470.js +++ b/test/issues/0470.js @@ -3,7 +3,7 @@ var assert = require('assert'); var yaml = require('../..'); -test('should not unnecessaryly apply quotes', function () { +test('should not unnecessarily apply quotes', function () { var expected = 'url: https://github.com/nodeca/js-yaml\n'; var actual = yaml.dump( @@ -14,7 +14,8 @@ test('should not unnecessaryly apply quotes', function () { assert.strictEqual(actual, expected); }); -test('should not unnecessaryly apply quotes - ', function () { + +test('should not unnecessarily apply quotes - ', function () { var expected = 'url: https://github.com/nodeca/js-yaml\n'; @@ -26,7 +27,7 @@ test('should not unnecessaryly apply quotes - ', function () { assert.strictEqual(actual, expected); }); -test('should not unnecessaryly apply quotes - space then /\n at end of value', function () { +test('should not unnecessarily apply quotes - space then /\n at end of value', function () { var expected = 'url: \'https://github.com/nodeca/js-yaml \'\n'; @@ -37,7 +38,8 @@ test('should not unnecessaryly apply quotes - space then /\n at end of value', f assert.strictEqual(actual, expected); }); -test('should not unnecessaryly apply quotes - space after colon', function () { + +test('should not unnecessarily apply quotes - space after colon', function () { var expected = 'url: \'https: //github.com/nodeca/js-yaml\'\n'; var actual = yaml.dump({ url: 'https: //github.com/nodeca/js-yaml' });