diff --git a/spec/partials.js b/spec/partials.js
index fcfc7803..d6baba50 100644
--- a/spec/partials.js
+++ b/spec/partials.js
@@ -272,17 +272,17 @@ describe('partials', function() {
});
it('should render nested partial blocks', function() {
shouldCompileToWithPartials(
- '.template-start.{{#> outer}}{{value}}{{/outer}}.template-end.',
+ '{{#> outer}}{{value}}{{/outer}}',
[
{value: 'success'},
{},
{
- outer: '.outer-start.{{#> nested}}.outer-partial-block-start.{{> @partial-block}}.outer-partial-block-end.{{/nested}}.outer-end.',
- nested: '.nested-start.{{> @partial-block}}.nested-end.'
+ outer: '{{#> nested}}{{> @partial-block}}{{/nested}}',
+ nested: '{{> @partial-block}}'
}
],
true,
- '.template-start..outer-start..nested-start..outer-partial-block-start.success.outer-partial-block-end..nested-end..outer-end..template-end.');
+ 'success');
});
});