test: remove unnecessary string literals

PR-URL: https://github.com/nodejs/node/pull/21638
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
This commit is contained in:
Jacek Pospychała 2018-07-03 19:02:59 +02:00 committed by Rich Trott
parent d4966a15cb
commit a64b2f2b94

View File

@ -37,8 +37,8 @@ code += '(function(){return this})().b;\n';
const res = vm.runInContext(code, o, 'test'); const res = vm.runInContext(code, o, 'test');
assert.strictEqual(typeof res, 'function', 'result should be function'); assert.strictEqual(typeof res, 'function');
assert.strictEqual(res.name, 'b', 'res should be named b'); assert.strictEqual(res.name, 'b');
assert.strictEqual(typeof o.a, 'function', 'a should be function'); assert.strictEqual(typeof o.a, 'function');
assert.strictEqual(typeof o.b, 'function', 'b should be function'); assert.strictEqual(typeof o.b, 'function');
assert.strictEqual(res, o.b, 'result should be global b function'); assert.strictEqual(res, o.b);