File tree 1 file changed +3
-3
lines changed
packages/ember-htmlbars/tests/helpers
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ QUnit.test('concats provided params', function() {
24
24
component = Component . create ( {
25
25
container,
26
26
27
- template : compile ( `{{concat "foo" " " "bar" " " "baz"}}` )
27
+ layout : compile ( `{{concat "foo" " " "bar" " " "baz"}}` )
28
28
} ) ;
29
29
30
30
runAppend ( component ) ;
@@ -39,7 +39,7 @@ QUnit.test('updates for bound params', function() {
39
39
firstParam : 'one' ,
40
40
secondParam : 'two' ,
41
41
42
- template : compile ( `{{concat firstParam secondParam}}` )
42
+ layout : compile ( `{{concat firstParam secondParam}}` )
43
43
} ) ;
44
44
45
45
runAppend ( component ) ;
@@ -72,7 +72,7 @@ QUnit.test('can be used as a sub-expression', function() {
72
72
firstParam : 'one' ,
73
73
secondParam : 'two' ,
74
74
75
- template : compile ( `{{#if (x-eq (concat firstParam secondParam) "onetwo")}}Truthy!{{else}}False{{/if}}` )
75
+ layout : compile ( `{{#if (x-eq (concat firstParam secondParam) "onetwo")}}Truthy!{{else}}False{{/if}}` )
76
76
} ) ;
77
77
78
78
runAppend ( component ) ;
You can’t perform that action at this time.
0 commit comments