Unverified Commit 4c96cb26 authored by Darren Austin's avatar Darren Austin Committed by GitHub

Fixed a cast issue with host_mode_tests.dart. (#86392)

parent a815084d
......@@ -245,7 +245,7 @@ Future<Map<String, dynamic>> captureReloadData(
await Future.wait<void>(<Future<void>>[stdoutDone.future, stderrDone.future]);
await process.exitCode;
final Map<String, Object> result = json.decode(benchmarkFile.readAsStringSync()) as Map<String, Object>;
final Map<String, dynamic> result = json.decode(benchmarkFile.readAsStringSync()) as Map<String, dynamic>;
benchmarkFile.deleteSync();
return result;
}
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