Fix error message.

This commit is contained in:
asiva 2018-09-27 14:17:57 -07:00 committed by Siva
parent aef9804784
commit 5024871a05

View File

@ -92,7 +92,7 @@ void main() {
builder.build();
fail('expect an exception to be thrown.');
} on DartDependencyException catch (error) {
expect(error.toString(), contains("Couldn't parse URI"));
expect(error.toString(), contains("Unable to parse URI"));
}
});
});