Unverified Commit 0edbe726 authored by Dan Field's avatar Dan Field Committed by GitHub

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

This reverts commit ca0487b9.
parent ca0487b9
4c79e423dc6f89f98d8ceb263a5ca78e2f2da996
58cdd53f9083412fa7da893f53c1ca1c93500532
......@@ -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);
}
......
......@@ -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>());
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment