Skip to content

Commit 28fb70e

Browse files
committed
Fix formatting
1 parent c2004ec commit 28fb70e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

tests/Unit/Value/CSSStringTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ public function getArrayRepresentationIncludesContents(): void
115115
public function doesNotEscapeSingleQuotesThatDoNotNeedToBeEscaped(): void
116116
{
117117
$input = "data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none'" .
118-
" xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd'" .
119-
" d='M14.3145 2 3V11.9987H17.5687L18 8.20761H14.3145L14.32 6.31012C14.32 5.32134 14.4207" .
120-
' 4.79153 15.9426 4.79153H17.977V1H14.7223C10.8129 1 9.43687 2.83909 9.43687 ' .
121-
" 5.93187V8.20804H7V11.9991H9.43687V23H14.3145Z' fill='black'/%3E%3C/svg%3E%0A";
118+
" xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd'" .
119+
" d='M14.3145 2 3V11.9987H17.5687L18 8.20761H14.3145L14.32 6.31012C14.32 5.32134 14.4207" .
120+
' 4.79153 15.9426 4.79153H17.977V1H14.7223C10.8129 1 9.43687 2.83909 9.43687 ' .
121+
" 5.93187V8.20804H7V11.9991H9.43687V23H14.3145Z' fill='black'/%3E%3C/svg%3E%0A";
122122

123123
$outputFormat = OutputFormat::createPretty();
124124

@@ -137,7 +137,7 @@ public function doesNotEscapeSingleQuotesThatDoNotNeedToBeEscaped(): void
137137
public function doesNotEscapeDoubleQuotesThatDoNotNeedToBeEscaped(): void
138138
{
139139
$input = '"Hello World"';
140-
140+
141141
$outputFormat = OutputFormat::createPretty();
142142

143143
self::assertSame('"\\"Hello World\\""', (new CSSString($input))->render($outputFormat));

0 commit comments

Comments
 (0)