diff --git a/modules/angular2/test/core/linker/integration_spec.ts b/modules/angular2/test/core/linker/integration_spec.ts index 86f1cc7622..b35509cb81 100644 --- a/modules/angular2/test/core/linker/integration_spec.ts +++ b/modules/angular2/test/core/linker/integration_spec.ts @@ -2034,16 +2034,6 @@ class DirectiveUpdatingHostProperties { constructor() { this.id = "one"; } } -@Directive({selector: '[update-host-actions]', host: {'@setAttr': 'setAttribute'}}) -@Injectable() -class DirectiveUpdatingHostActions { - setAttr: EventEmitter; - - constructor() { this.setAttr = new EventEmitter(); } - - triggerSetAttr(attrValue) { ObservableWrapper.callEmit(this.setAttr, ["key", attrValue]); } -} - @Directive({selector: '[listener]', host: {'(event)': 'onEvent($event)'}}) @Injectable() class DirectiveListeningEvent {