Skip to content

Commit

Permalink
Fix test output WRT JS vs Wasm (flutter#8018)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo authored Jul 3, 2024
1 parent eab30c4 commit 1563b9d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ final valueList = <String>[
void main() {
for (final useWasm in [true, false]) {
test(
'Can run web benchmarks with ${useWasm ? 'JS' : 'WASM'}',
'Can run web benchmarks with ${useWasm ? 'WASM' : 'JS'}',
() async {
await _runBenchmarks(useWasm: useWasm);
},
Expand Down

0 comments on commit 1563b9d

Please sign in to comment.