Skip to content
Snippets Groups Projects
Commit 1f11dc72 authored by Andreas Fischer's avatar Andreas Fischer
Browse files

Use parent:: in Test_User_Database::getUser().

parent 46cd3082
Branches
No related tags found
No related merge requests found
......@@ -21,13 +21,8 @@
*/
class Test_User_Database extends Test_User_Backend {
/**
* get a new unique user name
* test cases can override this in order to clean up created user
* @return array
*/
public function getUser() {
$user=uniqid('test_');
$user = parent::getUser();
$this->users[]=$user;
return $user;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment