1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-22 16:51:56 +02: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

@ -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);
}
}