Skip to content

Commit bf79653

Browse files
committed
fix JS lint errors
1 parent 36a21ef commit bf79653

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/parallel/test-vm-global-configurable-properties.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ const vm = require('vm');
77

88
const ctx = vm.createContext();
99

10-
let window = vm.runInContext("this", ctx);
10+
const window = vm.runInContext('this', ctx);
1111

12-
Object.defineProperty(window, "x", { value: "1", configurable: true});
13-
assert.strictEqual(window.x, "1");
14-
Object.defineProperty(window, "x", { value: "2", configurable: true });
15-
assert.strictEqual(window.x, "2");
12+
Object.defineProperty(window, 'x', { value: '1', configurable: true });
13+
assert.strictEqual(window.x, '1');
14+
Object.defineProperty(window, 'x', { value: '2', configurable: true });
15+
assert.strictEqual(window.x, '2');

0 commit comments

Comments
 (0)