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 <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
1 parent 8f2bdac commit f46fa90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const vm = require('vm');
2929
// Run in a new empty context
3030
let context = vm.createContext();
3131
let result = 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)