aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/functional/auth_test.php1
-rw-r--r--tests/test_framework/phpbb_functional_test_case.php15
2 files changed, 0 insertions, 16 deletions
diff --git a/tests/functional/auth_test.php b/tests/functional/auth_test.php
index 3e218ebd77..662b1bd38b 100644
--- a/tests/functional/auth_test.php
+++ b/tests/functional/auth_test.php
@@ -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');
}
/**
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php
index b17b2dcd5f..71e88fbcf6 100644
--- a/tests/test_framework/phpbb_functional_test_case.php
+++ b/tests/test_framework/phpbb_functional_test_case.php
@@ -216,9 +216,6 @@ class phpbb_functional_test_case extends phpbb_test_case
/**
* Creates a new user with limited permissions
*
- * Always call delete_user after running a test that
- * requires create_user.
- *
* @param string $username Also doubles up as the user's password
* @return int ID of created user
*/
@@ -266,18 +263,6 @@ class phpbb_functional_test_case extends phpbb_test_case
return user_add($user_row);
}
- /**
- * Deletes a user
- *
- * @param string $username The username of the user to delete
- */
- protected function delete_user($username)
- {
- $db = $this->get_db();
- $query = "DELETE FROM " . self::$config['table_prefix'] . "users WHERE username = '" . $db->sql_escape($username) . "'";
- $db->sql_query($query);
- }
-
protected function login($username = 'admin')
{
$this->add_lang('ucp');