| 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 eacea55cda3be74687269910c186164ef40f7a03..87740f5e6a6256158f28adae671f3b6724bea84c 100644
 | 
| --- a/runtime/observatory/tests/service/next_through_function_expression_test.dart
 | 
| +++ b/runtime/observatory/tests/service/next_through_function_expression_test.dart
 | 
| @@ -12,6 +12,7 @@ codeXYZ(int i) {
 | 
|    innerOne() {
 | 
|      return i * i;
 | 
|    }
 | 
| +
 | 
|    return innerOne();
 | 
|  }
 | 
|  
 | 
| @@ -23,8 +24,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+4}:18", // on '(', i.e. after 'innerOne' call
 | 
| -  "$file:${LINE_A+4}:3" // on 'return'
 | 
| +  "$file:${LINE_A+5}:18", // on '(', i.e. after 'innerOne' call
 | 
| +  "$file:${LINE_A+5}:3" // on 'return'
 | 
|  ];
 | 
|  
 | 
|  var tests = [
 | 
| 
 |