diff --git a/ember_debug/deprecation-debug.js b/ember_debug/deprecation-debug.js index 0efd289e21..b7a630dd95 100644 --- a/ember_debug/deprecation-debug.js +++ b/ember_debug/deprecation-debug.js @@ -206,7 +206,7 @@ export default EmberObject.extend(PortMixin, { // For ember-debug testing we usually don't want // to catch deprecations if (!this.get('namespace').IGNORE_DEPRECATIONS) { - this.get('deprecationsToSend').pushObject(deprecation); + this.deprecationsToSend.pushObject(deprecation); run.cancel(this.debounce); if (this._watching) { this.debounce = run.debounce(this, 'sendPending', 100);