Index: test/inspector/debugger/stepping-with-blackboxed-ranges.js |
diff --git a/test/inspector/debugger/stepping-with-blackboxed-ranges.js b/test/inspector/debugger/stepping-with-blackboxed-ranges.js |
index 0a97e5dc3555c1ad646df0649442d718e4c3a767..65b694b5667467ff1eab682e27209f10e5bae164 100644 |
--- a/test/inspector/debugger/stepping-with-blackboxed-ranges.js |
+++ b/test/inspector/debugger/stepping-with-blackboxed-ranges.js |
@@ -90,10 +90,15 @@ function setIncorrectRanges(scriptId, response) |
function setMixedSourceRanges(scriptId) |
{ |
Protocol.Debugger.onPaused(runAction); |
- Protocol.Debugger.setBlackboxedRanges({ |
- scriptId: scriptId, |
- positions: [ { lineNumber: 8, columnNumber: 0 }, { lineNumber: 15, columnNumber: 0 } ] // blackbox ranges for mixed.js |
- }).then(runAction); |
+ Protocol.Debugger |
+ .setBlackboxedRanges({ |
+ scriptId: scriptId, |
+ positions: [ |
+ {lineNumber: 6, columnNumber: 0}, |
+ {lineNumber: 14, columnNumber: 0} |
+ ] // blackbox ranges for mixed.js |
+ }) |
+ .then(runAction); |
} |
var actions = [ "stepOut", "print", "stepOut", "print", "stepOut", "print", |