Index: test/mjsunit/debug-conditional-breakpoints.js |
diff --git a/test/mjsunit/debug-conditional-breakpoints.js b/test/mjsunit/debug-conditional-breakpoints.js |
index bd4cdd150c8d4ef06cb1ac9e0c525fbd7ad5a7df..62484373002bbe77965dd4e104f1f82e853b391c 100644 |
--- a/test/mjsunit/debug-conditional-breakpoints.js |
+++ b/test/mjsunit/debug-conditional-breakpoints.js |
@@ -136,7 +136,7 @@ Debug.clearBreakPoint(bp); |
// Conditional breakpoint which checks a local variable. |
break_point_hit_count = 0; |
-bp = Debug.setBreakPoint(h, 0, 23, 'a % 2 == 0'); |
+bp = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0'); |
for (var i = 0; i < 10; i++) { |
g(); |
} |
@@ -146,8 +146,8 @@ Debug.clearBreakPoint(bp); |
// Multiple conditional breakpoint which the same condition. |
break_point_hit_count = 0; |
-bp1 = Debug.setBreakPoint(h, 0, 23, 'a % 2 == 0'); |
-bp2 = Debug.setBreakPoint(h, 0, 23, 'a % 2 == 0'); |
+bp1 = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0'); |
+bp2 = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0'); |
for (var i = 0; i < 10; i++) { |
g(); |
} |
@@ -159,8 +159,8 @@ Debug.clearBreakPoint(bp2); |
// Multiple conditional breakpoint which different conditions. |
break_point_hit_count = 0; |
-bp1 = Debug.setBreakPoint(h, 0, 23, 'a % 2 == 0'); |
-bp2 = Debug.setBreakPoint(h, 0, 23, '(a + 1) % 2 == 0'); |
+bp1 = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0'); |
+bp2 = Debug.setBreakPoint(h, 0, 22, '(a + 1) % 2 == 0'); |
for (var i = 0; i < 10; i++) { |
g(); |
} |