Skip to content

Commit 301745e

Browse files
Brajk19HypeMC
authored andcommitted
inline
1 parent b13ff8a commit 301745e

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/Attribute/RouteParamValue/ExpressionValuesTest.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ final class ExpressionValuesTest extends TestCase
1717
#[TestWith([new Expression('obj.getHeight() * obj.getWidth()')])]
1818
public function testValueNormalization(string|Expression $expression): void
1919
{
20-
$value = (new ExpressionValues($expression))->expression;
21-
22-
self::assertSame((string) $expression, (string) $value);
20+
self::assertSame((string) $expression, (string) (new ExpressionValues($expression))->expression);
2321
}
2422
}

0 commit comments

Comments
 (0)