Tests/BigInteger: make unit test do == vs ===

This commit is contained in:
terrafrost 2022-06-26 17:16:17 -05:00
parent 0b3cc98084
commit 9e77203746
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class PHP32Test extends TestCase
$x = new PHP32('FFFFFFFFFFFFFFFFC90FDA', 16);
$y = new PHP32("$x");
$this->assertSame(self::getVar($x, 'value'), self::getVar($y, 'value'));
$this->assertEquals(self::getVar($x, 'value'), self::getVar($y, 'value'));
}
public static function getStaticClass()