File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/ember-glimmer/tests/integration/syntax Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ moduleFor('Syntax test: {{#each as}}', class extends EachTest {
303303 this . assertInvariants ( ) ;
304304 }
305305
306- [ `@htmlbars it maintains DOM stability for stable keys when list is updated` ] ( ) {
306+ [ `@test it maintains DOM stability for stable keys when list is updated` ] ( ) {
307307 this . render ( `{{#each list key="text" as |item|}}{{item.text}}{{/each}}` , {
308308 list : emberA ( [ { text : 'Hello' } , { text : ' ' } , { text : 'world' } ] )
309309 } ) ;
@@ -318,11 +318,11 @@ moduleFor('Syntax test: {{#each as}}', class extends EachTest {
318318 let list = get ( this . context , 'list' ) ;
319319 list . unshiftObject ( { text : ', ' } ) ;
320320 list . unshiftObject ( { text : 'Hi' } ) ;
321- list . pushObject ( { text : ' ' } ) ;
321+ list . pushObject ( { text : '! ' } ) ;
322322 list . pushObject ( { text : 'earth' } ) ;
323323 } ) ;
324324
325- this . assertText ( 'Hi, Hello world earth' ) ;
325+ this . assertText ( 'Hi, Hello world! earth' ) ;
326326
327327 this . assertPartialInvariants ( 2 , 5 ) ;
328328
You can’t perform that action at this time.
0 commit comments