aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-12-06 23:47:19 -0500
committerOleg Pudeyev <oleg@bsdpower.com>2012-12-06 23:49:27 -0500
commitff993ba9d30f5de49e5231647c5bb76d95c357f8 (patch)
treec2b910fc80d6d3b36271f9e314668eefa47ff4b3 /tests/functional
parentfb5c4440e598f2a775a52299a06e903d3cee5398 (diff)
downloadforums-ff993ba9d30f5de49e5231647c5bb76d95c357f8.tar
forums-ff993ba9d30f5de49e5231647c5bb76d95c357f8.tar.gz
forums-ff993ba9d30f5de49e5231647c5bb76d95c357f8.tar.bz2
forums-ff993ba9d30f5de49e5231647c5bb76d95c357f8.tar.xz
forums-ff993ba9d30f5de49e5231647c5bb76d95c357f8.zip
[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
Diffstat (limited to 'tests/functional')
-rw-r--r--tests/functional/auth_test.php1
1 files changed, 0 insertions, 1 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');
}
/**