summaryrefslogtreecommitdiffstats
path: root/tests/lib/user.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/user.php')
-rw-r--r--tests/lib/user.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/lib/user.php b/tests/lib/user.php
index 26596e2fb54..c4c74cbc254 100644
--- a/tests/lib/user.php
+++ b/tests/lib/user.php
@@ -51,15 +51,5 @@ class User extends TestCase {
$uid = \OC_User::checkPassword('foo', 'bar');
$this->assertEquals($uid, 'foo');
}
-
- public function testDeleteUser() {
- $fail = \OC_User::deleteUser('victim');
- $this->assertFalse($fail);
-
- $success = \OC::$server->getUserManager()->createUser('victim', 'password');
-
- $success = \OC_User::deleteUser('victim');
- $this->assertTrue($success);
- }
}