Skip to content

Commit

Permalink
[Tests] fix test messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Sep 20, 2018
1 parent c1822e8 commit 28bd1ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ var forEach = function (arr, func) {
};

var hasSymbols = require('has-symbols')();
var debug = require('object-inspect');
var inspect = require('object-inspect');
var debug = function (v, m) { return inspect(v) + ' ' + m; };

test('non-symbol values', function (t) {
var nonSymbols = [
Expand Down

0 comments on commit 28bd1ed

Please sign in to comment.