diff --git a/tests/PugBladeCompilerTest.php b/tests/PugBladeCompilerTest.php index 69dccc3..8ca6394 100644 --- a/tests/PugBladeCompilerTest.php +++ b/tests/PugBladeCompilerTest.php @@ -156,13 +156,13 @@ public function testCompile() $contents = ob_get_contents(); ob_end_clean(); - self::assertSame('

Pug is there

By HTML syntax!

Go
', $contents); - // Cleanup if (file_exists($compiledPath)) { unlink($compiledPath); clearstatcache(); } + + self::assertSame('

Pug is there

By HTML syntax!

Go
', $contents); } /** @@ -205,13 +205,13 @@ public function testGetAndSetPath() $contents = ob_get_contents(); ob_end_clean(); - self::assertSame('

Pug is there

By HTML syntax!

Go
', $contents); - // Cleanup if (file_exists($compiledPath)) { unlink($compiledPath); clearstatcache(); } + + self::assertSame('

Pug is there

By HTML syntax!

Go
', $contents); } /** @@ -243,13 +243,13 @@ public function testPhpDirective() $contents = ob_get_contents(); ob_end_clean(); - self::assertSame('

12

24

', $contents); - // Cleanup if (file_exists($compiledPath)) { unlink($compiledPath); clearstatcache(); } + + self::assertSame('

12

24

', $contents); } /**