|
|
@@ -344,7 +344,7 @@ class SecurityTest extends TestCase
|
|
|
$value = Security::randomString(7);
|
|
|
$this->assertSame(7, strlen($value));
|
|
|
|
|
|
- $value = Security::randomString(64);
|
|
|
+ $value = Security::randomString();
|
|
|
$this->assertSame(64, strlen($value));
|
|
|
|
|
|
$this->assertRegExp('/^[0-9a-f]+$/', $value, 'should return a ASCII string');
|