mirror of
https://github.com/phpseclib/phpseclib.git
synced 2025-02-05 13:28:27 +00:00
Tests/BigInteger: make unit test do == vs ===
This commit is contained in:
parent
0b3cc98084
commit
9e77203746
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user