Skip to content

Commit 377e334

Browse files
authored
fix test expectation to match new compiler message (#3182)
Also fixes a broken link
1 parent 31bfdca commit 377e334

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ These packages provide libraries for generating, compiling and serving Dart code
44

55
[Getting started with build_runner](https://github.com/dart-lang/build/blob/master/docs/getting_started.md)
66

7-
[Integrating with Travis](https://github.com/dart-lang/build/blob/master/docs/travis.md)
8-
97
[General FAQ](https://github.com/dart-lang/build/blob/master/docs/faq.md)
108

119
[Windows FAQ](https://github.com/dart-lang/build/blob/master/docs/windows_faq.md)

build_runner/test/integration_tests/wrong_builder_factory_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ void main() {
3030
test('warns when builder definition produces invalid build script',
3131
() async {
3232
var result = await buildTool.build(expectExitCode: ExitCode.config.code);
33-
expect(result, emitsThrough(contains('Getter not found: \'wrongKey\'')));
33+
expect(result, emitsThrough(contains('Undefined name \'wrongKey\'')));
3434
expect(
3535
result, emitsThrough(contains('misconfigured builder definition')));
3636
});

0 commit comments

Comments
 (0)