diff --git a/packages/ember-glimmer/tests/utils/shared-conditional-tests.js b/packages/ember-glimmer/tests/utils/shared-conditional-tests.js index e11f1e13535..f84c82dc79c 100644 --- a/packages/ember-glimmer/tests/utils/shared-conditional-tests.js +++ b/packages/ember-glimmer/tests/utils/shared-conditional-tests.js @@ -494,12 +494,11 @@ export class TogglingHelperConditionalsTest extends TogglingConditionalsTest { this.render(wrappedTemplate, context); } - ['@htmlbars it does not update when the unbound helper is used']() { - let template = `${ - this.wrappedTemplateFor({ cond: '(unbound cond1)', truthy: '"T1"', falsy: '"F1"' }) - }${ - this.wrappedTemplateFor({ cond: '(unbound cond2)', truthy: '"T2"', falsy: '"F2"' }) - }`; + ['@test it does not update when the unbound helper is used']() { + let template = this.wrapperFor([ + this.templateFor({ cond: '(unbound cond1)', truthy: '"T1"', falsy: '"F1"' }), + this.templateFor({ cond: '(unbound cond2)', truthy: '"T2"', falsy: '"F2"' }) + ]); this.render(template, { cond1: this.truthyValue, cond2: this.falsyValue });