File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/@ember/-internals/glimmer/tests/integration/application Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import { service } from '@ember/service';
66import { Component } from '@ember/-internals/glimmer' ;
77import { tracked } from '@ember/-internals/metal' ;
88import { set } from '@ember/object' ;
9+ import GlimmerComponent from '@glimmer/component' ;
910import { backtrackingMessageFor } from '../../utils/debug-stack' ;
1011import { runTask } from '../../../../../../internal-test-helpers/lib/run' ;
1112import { template } from '@ember/template-compiler' ;
@@ -413,10 +414,9 @@ moduleFor(
413414 } ) ;
414415
415416 this . addComponent ( 'foo' , {
416- // TODO: use a Glimmer Component instead, since that's the requirement to make it fail
417- ComponentClass : class extends Component {
417+ ComponentClass : class extends GlimmerComponent {
418418 willDestroy ( ) {
419- assert . step ( this . model ) ;
419+ assert . step ( this . args . model ) ;
420420 }
421421 } ,
422422 } ) ;
You can’t perform that action at this time.
0 commit comments