| Index: pkg/template_binding/test/custom_element_bindings_test.dart
|
| diff --git a/pkg/template_binding/test/custom_element_bindings_test.dart b/pkg/template_binding/test/custom_element_bindings_test.dart
|
| index c9556d5a78874c47dbe236b5abde5668663ea153..cc128753d2d743fefa56b862ac0a9dd04b8cf6dd 100644
|
| --- a/pkg/template_binding/test/custom_element_bindings_test.dart
|
| +++ b/pkg/template_binding/test/custom_element_bindings_test.dart
|
| @@ -124,7 +124,7 @@ customElementBindingsTest() {
|
| var element = div.nodes[1];
|
|
|
| expect(element is MyCustomElement, true,
|
| - reason: '${element} should be a MyCustomElement');
|
| + reason: '$element should be a MyCustomElement');
|
|
|
| expect(element.myPoint, model['a']);
|
| expect(element.scaryMonster, model['b']);
|
| @@ -179,6 +179,7 @@ class MyCustomElement extends HtmlElement implements NodeBindExtension {
|
| unbind(name) => nodeBindFallback(this).unbind(name);
|
| unbindAll() => nodeBindFallback(this).unbindAll();
|
| get bindings => nodeBindFallback(this).bindings;
|
| + get templateInstance => nodeBindFallback(this).templateInstance;
|
| }
|
|
|
| class _MyCustomBinding extends NodeBinding {
|
|
|