Revert "Roll engine to 4c79e423dc6f89f98d8ceb263a5ca78e2f2da996 and update tests (#23357)" (#23372)

This reverts commit ca0487b9ed52b7237689de3b9cb806911dfbb701.
This commit is contained in:
Dan Field 2018-10-22 10:29:00 -07:00 committed by GitHub
parent ca0487b9ed
commit 0edbe726a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
4c79e423dc6f89f98d8ceb263a5ca78e2f2da996
58cdd53f9083412fa7da893f53c1ca1c93500532

View File

@ -33,13 +33,13 @@ void main() {
Future<VMIsolate> breakInBuildMethod(FlutterTestDriver flutter) async {
return _flutter.breakAt(
Uri.parse('package:test/main.dart'),
Uri.file(_project.buildMethodBreakpointFile),
_project.buildMethodBreakpointLine);
}
Future<VMIsolate> breakInTopLevelFunction(FlutterTestDriver flutter) async {
return _flutter.breakAt(
Uri.parse('package:test/main.dart'),
Uri.file(_project.topLevelFunctionBreakpointFile),
_project.topLevelFunctionBreakpointLine);
}

View File

@ -41,7 +41,7 @@ void main() {
test('reload hits breakpoints after reload', () async {
await _flutter.run(withDebugger: true);
final VMIsolate isolate = await _flutter.breakAt(
Uri.parse('package:test/main.dart'),
Uri.file(_project.breakpointFile),
_project.breakpointLine);
expect(isolate.pauseEvent, isInstanceOf<VMPauseBreakpointEvent>());
});