Replace the lost boolean cast

This commit is contained in:
nathangray 2017-10-17 16:48:17 +02:00
parent feec899337
commit cd49f6568d

View File

@ -170,7 +170,7 @@ class SecurityTest extends TestCase {
{
$r=@php_safe_unserialize($str);
$this->assertSame($result, $r, 'Save unserialize failed');
$this->assertSame($result, (bool)$r, 'Save unserialize failed');
}
/**