mirror of
https://github.com/danog/tgseclib.git
synced 2025-01-19 03:54:22 +01:00
Use assertArrayNotHasKey().
This commit is contained in:
parent
f2a08f7b6c
commit
d6c210984c
@ -36,8 +36,9 @@ class Unit_Crypt_RandomTest extends PhpseclibTestCase
|
||||
for ($i = 0; $i < 10000; ++$i) {
|
||||
$rand = crypt_random_string(16);
|
||||
$this->assertSame(16, strlen($rand));
|
||||
$this->assertFalse(
|
||||
isset($values[$rand]),
|
||||
$this->assertArrayNotHasKey(
|
||||
$rand,
|
||||
$values,
|
||||
'Failed asserting that generated value does not exist in set.'
|
||||
);
|
||||
$values[$rand] = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user