Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
kylekatarnls committed Mar 15, 2017
1 parent d735476 commit 02866d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Phug/CompilerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function testCompile()
'<!DOCTYPE html><html><input></html>',
"doctype html\n".
"html\n".
" input"
' input'
);
$this->assertCompile([
'<!DOCTYPE html>',
Expand Down Expand Up @@ -112,9 +112,9 @@ public function testGetCompiledChildren()
$forCompiler = new Compiler\ForCompiler($this->compiler);
$elementNode = new ElementNode();
$elementNode->setName('section');
$for = new CodeElement('foreach ($groups as $$group)', [
$for = new CodeElement('foreach ($groups as $group)', [
new MarkupElement('article'),
$elementNode
$elementNode,
]);
$compiledChildren = $forCompiler->getCompiledChildren($for, null);

Expand Down

0 comments on commit 02866d5

Please sign in to comment.