We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb6dbdd commit 8d7147fCopy full SHA for 8d7147f
1 file changed
tests/ParserTest.php
@@ -1197,10 +1197,10 @@ public function lonelyImport(): void
1197
public function functionArithmeticInFile()
1198
{
1199
$oDoc = self::parsedStructureForFile('function-arithmetic', Settings::create()->withMultibyteSupport(true));
1200
- $sExpected = 'div {height: max(300,vh+10);}
1201
-div {height: max(300,vh-10);}
1202
-div {height: max(300,vh*10);}
1203
-div {height: max(300,vh/10);}';
+ $sExpected = 'div {height: max(300,vh + 10);}
+div {height: max(300,vh - 10);}
+div {height: max(300,vh * 10);}
+div {height: max(300,vh / 10);}';
1204
self::assertSame($sExpected, $oDoc->render());
1205
}
1206
0 commit comments