Skip to content

Commit f46fa90

Browse files
mthpvgMylesBorins
authored andcommitted
test: switch arguments in strictEqual
In the `test/parallel/test-vm-create-and-run-in-context.js` test the actual and expected arguments in the `assert.strictEqual()` call on line 32 are in the wrong order and they have to be switched around. PR-URL: #24141 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
1 parent 8f2bdac commit f46fa90

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎test/parallel/test-vm-create-and-run-in-context.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const vm = require('vm');
2929
// Run in a new empty context
3030
letcontext=vm.createContext();
3131
letresult=vm.runInContext('"passed";',context);
32-
assert.strictEqual('passed',result);
32+
assert.strictEqual(result,'passed');
3333

3434
// Create a new pre-populated context
3535
context=vm.createContext({'foo': 'bar','thing': 'lala'});

0 commit comments

Comments
 (0)