Merge branch '2.0'

This commit is contained in:
terrafrost 2019-05-26 11:43:14 -05:00
commit 63f8276693

View File

@ -460,4 +460,10 @@ abstract class Unit_Math_BigInteger_TestCase extends PhpseclibTestCase
$temp = $this->getInstance(48);
$this->assertSame($temp->toHex(true), '30');
}
public function testZeroBase10()
{
$temp = $this->getInstance('00');
$this->assertSame($temp->toString(), '0');
}
}