1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-11-27 04:34:45 +01:00

Tests/BigInteger: update testDebugInfo test

This commit is contained in:
terrafrost 2015-12-14 13:26:56 -06:00
parent 786cecf309
commit cae579a19b

View File

@ -364,7 +364,7 @@ abstract class Unit_Math_BigInteger_TestCase extends PhpseclibTestCase
*/
public function testDebugInfo()
{
$num = new Math_BigInteger(50);
$num = $this->getInstance(50);
$str = print_r($num, true);
$this->assertContains('[value] => 0x32', $str);
return $str;