Skip to content

Commit

Permalink
use quotes
Browse files Browse the repository at this point in the history
so we can avoid a major bump
  • Loading branch information
jonschlinkert committed Jun 15, 2018
1 parent a0288ed commit cd4a37b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe('is a number', function() {

fixtures.forEach(function(num, idx) {
it(JSON.stringify(num) + ' should be a number', function() {
assert(isNumber(num), `expected "${String(num)}" to be a number`);
assert(isNumber(num), 'expected "' + String(num) + '" to be a number');
});
});
});
Expand Down Expand Up @@ -148,7 +148,7 @@ describe('is not a number', function() {

fixtures.forEach(function(num) {
it(JSON.stringify(num) + ' should not be a number', function() {
assert(!isNumber(num), `expected "${String(num)}" to not be a number`);
assert(!isNumber(num), 'expected "' + String(num) + '" to not be a number');
});
});
});

0 comments on commit cd4a37b

Please sign in to comment.