Skip to content

Commit

Permalink
spelling correction for nodeca#470 test descriptions
Browse files Browse the repository at this point in the history
# Conflicts:
#	test/issues/0470.js
  • Loading branch information
GerHobbelt committed Apr 15, 2019
1 parent 0ab1fb6 commit 2699d76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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 input = {
Expand All @@ -17,7 +17,7 @@ test('should not unnecessaryly apply quotes', function () {
assert.deepStrictEqual(roundTrip, input);
});

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';
var input = {
Expand All @@ -31,7 +31,7 @@ test('should not unnecessaryly apply quotes - space then /\n at end of value', f
assert.deepStrictEqual(roundTrip, input);
});

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 input = {
Expand Down

0 comments on commit 2699d76

Please sign in to comment.