Skip to content

Commit 67cf0d7

Browse files
committed
Fix bad super call
1 parent eecccda commit 67cf0d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@ember/-internals/glimmer/tests/integration/application/rendering-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ moduleFor(
530530
this.addComponent('foo', {
531531
ComponentClass: class extends Component {
532532
init() {
533-
this._super(...arguments);
533+
super.init(...arguments);
534534
this.set('person.name', 'Ben');
535535
}
536536
},

0 commit comments

Comments
 (0)