Skip to content

Commit

Permalink
Apply fixes from StyleCI (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylekatarnls committed Dec 26, 2018
1 parent 7dce91a commit 47f4044
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Phug/RendererTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1093,12 +1093,12 @@ public function testConsecutiveRenders()
'debug' => false,
]);

$html = $renderer->renderFile(__DIR__ . '/../fixtures/append/page.pug');
$html = $renderer->renderFile(__DIR__.'/../fixtures/append/page.pug');

$this->assertSameLines(file_get_contents(__DIR__ . '/../fixtures/append/page.html'), $html);
$this->assertSameLines(file_get_contents(__DIR__.'/../fixtures/append/page.html'), $html);

$html = $renderer->renderFile(__DIR__ . '/../cases/comments.pug');
$html = $renderer->renderFile(__DIR__.'/../cases/comments.pug');

$this->assertSameLines(file_get_contents(__DIR__ . '/../cases/comments.html'), $html);
$this->assertSameLines(file_get_contents(__DIR__.'/../cases/comments.html'), $html);
}
}

0 comments on commit 47f4044

Please sign in to comment.