Index: runtime/observatory/tests/service/parameters_in_scope_at_entry_test.dart |
diff --git a/runtime/observatory/tests/service/parameters_in_scope_at_entry_test.dart b/runtime/observatory/tests/service/parameters_in_scope_at_entry_test.dart |
index 7f90eec36b764663ee6d2e0025eae95bbce902ea..c64724223d441680ff6628abb726ae8d8f44f33b 100644 |
--- a/runtime/observatory/tests/service/parameters_in_scope_at_entry_test.dart |
+++ b/runtime/observatory/tests/service/parameters_in_scope_at_entry_test.dart |
@@ -21,16 +21,17 @@ fooClosure() { |
theClosureFunction(param) { |
return param; |
} |
+ |
return theClosureFunction; |
} |
testMain() { |
debugger(); |
- foo("in-scope"); // Line A. |
+ foo("in-scope"); // Line A. |
var f = fooClosure(); |
debugger(); |
- f("in-scope"); // Line B. |
+ f("in-scope"); // Line B. |
} |
var tests = [ |
@@ -50,7 +51,6 @@ var tests = [ |
expect(param['value'].valueAsString, equals("in-scope")); |
}, |
resumeIsolate, |
- |
hasStoppedAtBreakpoint, |
stoppedAtLine(LINE_B), |
(isolate) => isolate.stepInto(), |