| Index: runtime/observatory/tests/service/next_through_function_expression_test.dart
|
| diff --git a/runtime/observatory/tests/service/next_through_function_expression_test.dart b/runtime/observatory/tests/service/next_through_function_expression_test.dart
|
| index 87740f5e6a6256158f28adae671f3b6724bea84c..eacea55cda3be74687269910c186164ef40f7a03 100644
|
| --- a/runtime/observatory/tests/service/next_through_function_expression_test.dart
|
| +++ b/runtime/observatory/tests/service/next_through_function_expression_test.dart
|
| @@ -12,7 +12,6 @@ codeXYZ(int i) {
|
| innerOne() {
|
| return i * i;
|
| }
|
| -
|
| return innerOne();
|
| }
|
|
|
| @@ -24,8 +23,8 @@ List<String> stops = [];
|
| List<String> expected = [
|
| "$file:${LINE_A+0}:13", // on 'i' in 'codeXYZ(int i)'
|
| "$file:${LINE_A+1}:3", // on 'innerOne'
|
| - "$file:${LINE_A+5}:18", // on '(', i.e. after 'innerOne' call
|
| - "$file:${LINE_A+5}:3" // on 'return'
|
| + "$file:${LINE_A+4}:18", // on '(', i.e. after 'innerOne' call
|
| + "$file:${LINE_A+4}:3" // on 'return'
|
| ];
|
|
|
| var tests = [
|
|
|