- Removes debug leftovers

This commit is contained in:
Vlad
2016-01-04 06:50:48 -05:00
parent 2793e74858
commit 0192934e65
2 changed files with 1 additions and 5 deletions

View File

@ -37,7 +37,6 @@ class Button {
</div>
</td>
</tr>';
//!d($template);exit;
return $template;
}
}

View File

@ -132,11 +132,9 @@ class NewsletterRendererCest {
expect($DOM('tr > td > img', 0)->attr('width'))->equals(280);
}
function itRendersText() {
$template = $this->newsletterData['content']['blocks'][0]['blocks'][0]['blocks'][2];
$DOM = $this->queryDOM->parseStr(Text::render($template));
//!d($DOM->__toString());exit;
// blockquotes and paragraphs should be converted to spans and placed inside a table
expect(
!empty($DOM('tr > td > table > tr > td.mailpoet_paragraph', 0)->html())
@ -174,7 +172,6 @@ class NewsletterRendererCest {
))->equals(1);
}
function itRendersSpacer() {
$template = $this->newsletterData['content']['blocks'][0]['blocks'][0]['blocks'][4];
$DOM = $this->queryDOM->parseStr(Spacer::render($template));