node/test/message/throw_in_line_with_tabs.js
Rich Trott a030c5cf49 test: remove unused assert module imports
Many test modules load assert but do not use it. This change removes
those instances.

It also removes a handful of other unused variables when they were
nearby.

PR-URL: https://github.com/nodejs/node/pull/4438
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2015-12-30 11:45:34 -08:00

13 lines
197 B
JavaScript

/* eslint-disable indent */
'use strict';
require('../common');
console.error('before');
(function() {
// these lines should contain tab!
throw ({ foo: 'bar' });
})();
console.error('after');