summaryrefslogtreecommitdiff
path: root/test/sequential/test-inspector-bindings.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/sequential/test-inspector-bindings.js')
-rw-r--r--test/sequential/test-inspector-bindings.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/sequential/test-inspector-bindings.js b/test/sequential/test-inspector-bindings.js
index b2140c11a3..bf97d8b512 100644
--- a/test/sequential/test-inspector-bindings.js
+++ b/test/sequential/test-inspector-bindings.js
@@ -27,9 +27,9 @@ function checkScope(session, scopeId) {
}
function debuggerPausedCallback(session, notification) {
- const params = notification['params'];
- const callFrame = params['callFrames'][0];
- const scopeId = callFrame['scopeChain'][0]['object']['objectId'];
+ const params = notification.params;
+ const callFrame = params.callFrames[0];
+ const scopeId = callFrame.scopeChain[0].object.objectId;
checkScope(session, scopeId);
}
@@ -65,11 +65,11 @@ function testSampleDebugSession() {
scopeCallback = function(error, result) {
const i = cur++;
let v, actual, expected;
- for (v of result['result']) {
- actual = v['value']['value'];
- expected = expects[v['name']][i];
+ for (v of result.result) {
+ actual = v.value.value;
+ expected = expects[v.name][i];
if (actual !== expected) {
- failures.push(`Iteration ${i} variable: ${v['name']} ` +
+ failures.push(`Iteration ${i} variable: ${v.name} ` +
`expected: ${expected} actual: ${actual}`);
}
}