1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-23 03:19:01 +01:00

[ticket/11525] Compare correct array to expected value

PHPBB3-11525
This commit is contained in:
Joas Schilling 2013-11-11 00:01:31 +01:00
parent aa84f7de04
commit 32ba402c34

View File

@ -252,7 +252,7 @@ class phpbb_avatar_manager_test extends PHPUnit_Framework_TestCase
foreach ($output as $key => $value)
{
$this->assertArrayHasKey($key, $cleaned_row);
$this->assertEquals($output[$key], $value);
$this->assertEquals($cleaned_row[$key], $value);
}
}