Skip to content
This repository was archived by the owner on Mar 19, 2023. It is now read-only.

Commit 8719245

Browse files
committed
Test assertion fix
1 parent 0a8007f commit 8719245

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/CeesVanEgmond/Minify/Providers/StyleSheetSpec.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ function it_adds_multiple_files()
3939
function it_adds_custom_attributes()
4040
{
4141
$this->tag('file', array('foobar' => 'baz'))
42-
->shouldReturn('<link foobar="baz" href="file" rel="stylesheet">');
42+
->shouldReturn('<link foobar="baz" href="file" rel="stylesheet">' . PHP_EOL);
4343
}
4444

4545
function it_adds_without_custom_attributes()
4646
{
4747
$this->tag('file')
48-
->shouldReturn('<link href="file" rel="stylesheet">');
48+
->shouldReturn('<link href="file" rel="stylesheet">' . PHP_EOL);
4949
}
5050

5151
function it_throws_exception_when_file_not_exists()

0 commit comments

Comments
 (0)