refactor(ProtoViewBuilder): improve error message for dangling bindings

Closes #3066
This commit is contained in:
Pawel Kozlowski
2015-07-15 14:52:41 +02:00
committed by Tobias Bosch
parent fc8f4688c7
commit b785503543
3 changed files with 4 additions and 4 deletions
@@ -1283,7 +1283,7 @@ export function main() {
PromiseWrapper.catchError(tcb.createAsync(MyComp), (e) => {
expect(e.message).toEqual(
`Can't bind to 'unknown' since it isn't a know property of the 'div' element and there are no matching directives with a corresponding property`);
`Can't bind to 'unknown' since it isn't a known property of the '<div>' element and there are no matching directives with a corresponding property`);
async.done();
return null;
});