Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flutter-candidate.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
86327198ff0678f46cbdfb3e12f1759d03aa768d
c63c6b08a7114517575bcf3e45275ec7a9f4e87f
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,12 @@ Future<void> _runBenchmarks({bool useWasm = false}) async {

for (final devToolsBenchmark in DevToolsBenchmark.values) {
final benchmarkName = devToolsBenchmark.id;
final expectedMetrics = expectedBenchmarkMetrics(useWasm: useWasm);
// Note: Due to https://github.com/flutter/flutter/pull/175392 there is no
// longer any difference in benchmark events for skwasm vs. canvaskit.
//
// TODO(https://github.com/flutter/flutter/issues/177057): Remove hardcoded
// useWasm: false param when package:web_benchmarks is updated.
final expectedMetrics = expectedBenchmarkMetrics(useWasm: false);
const expectedComputations = BenchmarkMetricComputation.values;
final scores = taskResult.scores[benchmarkName] ?? [];
expect(
Expand Down
Loading