1
0
mirror of https://github.com/danog/math.git synced 2024-11-30 04:19:31 +01:00

Remove useless of() call in tests

This commit is contained in:
Benjamin Morel 2015-06-12 01:17:42 +02:00
parent 4f4b9531ed
commit 0dcae82742

View File

@ -16,7 +16,7 @@ abstract class AbstractTestCase extends \PHPUnit_Framework_TestCase
*/
protected function assertBigIntegerEquals($expected, BigInteger $actual)
{
$this->assertSame($expected, (string) BigInteger::of($actual));
$this->assertSame($expected, (string) $actual);
}
/**