1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-01 22:40:39 +02:00

[ticket/10972] Drop user deletion.

Users should not be deleted in tests that test user creation.
Tests should use unique user names to avoid collisions.

User deletion should use user_remove anyway.

PHPBB3-10972
This commit is contained in:
Oleg Pudeyev
2012-12-06 23:47:19 -05:00
parent fb5c4440e5
commit ff993ba9d3
2 changed files with 0 additions and 16 deletions

View File

@@ -29,7 +29,6 @@ class phpbb_functional_auth_test extends phpbb_functional_test_case
$crawler = $this->request('GET', 'index.php');
$this->assert_response_success();
$this->assertContains('anothertestuser', $crawler->filter('.icon-logout')->text());
$this->delete_user('anothertestuser');
}
/**