Skip to content

Commit

Permalink
fix the build_daemon test (#3255)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemac53 committed Mar 8, 2022
1 parent 7260e2c commit d916c44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_runner/test/daemon/daemon_test.dart
Expand Up @@ -257,7 +257,7 @@ main() {
var succeededResult = await client.buildResults.first;
expect(succeededResult.results.first.status, BuildStatus.succeeded);
var ddcContent = await File(p.join(d.sandbox, 'a', '.dart_tool', 'build',
'generated', 'a', 'web', 'main.unsound.ddc.js'))
'generated', 'a', 'web', 'main.sound.ddc.js'))
.readAsString();
expect(ddcContent, contains('goodbye world'));
});
Expand Down

0 comments on commit d916c44

Please sign in to comment.