Commit 5024871a authored by asiva's avatar asiva Committed by Siva

Fix error message.

parent aef98047
...@@ -92,7 +92,7 @@ void main() { ...@@ -92,7 +92,7 @@ void main() {
builder.build(); builder.build();
fail('expect an exception to be thrown.'); fail('expect an exception to be thrown.');
} on DartDependencyException catch (error) { } on DartDependencyException catch (error) {
expect(error.toString(), contains("Couldn't parse URI")); expect(error.toString(), contains("Unable to parse URI"));
} }
}); });
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment