Removed redundant casting to string

parent d45fd7ad
...@@ -179,7 +179,7 @@ class ExpressionBuilderTest extends TestCase ...@@ -179,7 +179,7 @@ class ExpressionBuilderTest extends TestCase
{ {
$part = $this->expr->comparison($leftExpr, $operator, $rightExpr); $part = $this->expr->comparison($leftExpr, $operator, $rightExpr);
self::assertEquals($expected, (string) $part); self::assertEquals($expected, $part);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment