Skip to content

Commit

Permalink
spelling correction for nodeca#470 test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
GerHobbelt committed Apr 15, 2019
1 parent c8c9ec7 commit 54ba1f1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/issues/0470.js
Expand Up @@ -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(
Expand All @@ -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';

Expand All @@ -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';

Expand All @@ -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' });
Expand Down

0 comments on commit 54ba1f1

Please sign in to comment.