Merge pull request #3523 from Nicofuma/ticket/13747

[ticket/13747] Add assertions to test_validate_path_linux
This commit is contained in:
Joas Schilling 2015-04-06 14:21:47 +02:00
commit 84df225038

View file

@ -200,6 +200,15 @@ class phpbb_functions_acp_validate_config_vars_test extends phpbb_test_case
$config_ary,
$error
);
if ($expected === true)
{
$this->assertEmpty($error);
}
else
{
$this->assertEquals(array($expected), $error);
}
}
public function data_validate_path_windows()