From 4cdbf9c0786ee79ef9a44acf194340d917407399 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 2 Jun 2008 17:42:58 +0000 Subject: [PATCH] - Patch #260505 by flobruit: updated the user module tests to be consistent with the code. --- modules/user/user.test | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/user/user.test b/modules/user/user.test index 882f27859a4..a5de598cda7 100644 --- a/modules/user/user.test +++ b/modules/user/user.test @@ -41,9 +41,6 @@ class UserRegistrationTestCase extends DrupalWebTestCase { // Check user fields. $this->assertEqual($user->name, $name, t('Username matches.')); $this->assertEqual($user->mail, $mail, t('E-mail address matches.')); - $this->assertEqual($user->mode, 0, t('Correct mode field.')); - $this->assertEqual($user->sort, 0, t('Correct sort field.')); - $this->assertEqual($user->threshold, 0, t('Correct treshold field.')); $this->assertEqual($user->theme, '', t('Correct theme field.')); $this->assertEqual($user->signature, '', t('Correct signature field.')); $this->assertTrue(($user->created > time() - 20 ), t('Correct creation time.'));