summaryrefslogtreecommitdiff
path: root/modules/profile/profile.test
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-05-30 07:30:53 +0000
committerDries Buytaert <dries@buytaert.net>2008-05-30 07:30:53 +0000
commitc6c26b5e230b5225ea8a355b6e7a7b31096f7cb3 (patch)
tree18f49ddd773f033ed75eba1fa70dc55de1952f55 /modules/profile/profile.test
parentbc5f69a333af204f8e6c6494d85c96b2da1e1c51 (diff)
downloadbrdo-c6c26b5e230b5225ea8a355b6e7a7b31096f7cb3.tar.gz
brdo-c6c26b5e230b5225ea8a355b6e7a7b31096f7cb3.tar.bz2
- Patch #247423 by boombatower: code style fixes for the tests.
Diffstat (limited to 'modules/profile/profile.test')
-rw-r--r--modules/profile/profile.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/profile/profile.test b/modules/profile/profile.test
index 5ffef8600..d594c345c 100644
--- a/modules/profile/profile.test
+++ b/modules/profile/profile.test
@@ -42,7 +42,7 @@ class ProfileTestCase extends DrupalWebTestCase {
$this->assertTrue($fid, t('New Profile field has been entered in the database'));
// Check that the new field is appearing on the user edit form.
- $this->drupalGet('user/' . $this->admin_user->uid . '/edit/' .$category);
+ $this->drupalGet('user/' . $this->admin_user->uid . '/edit/' . $category);
// Checking field.
if ($type == 'date') {
@@ -202,9 +202,9 @@ class ProfileTestDate extends ProfileTestCase {
// Set date to January 09, 1983
$edit = array(
- $field['form_name'] .'[month]' => 1,
- $field['form_name'] .'[day]' => 9,
- $field['form_name'] .'[year]' => 1983,
+ $field['form_name'] . '[month]' => 1,
+ $field['form_name'] . '[day]' => 9,
+ $field['form_name'] . '[year]' => 1983,
);
$this->drupalPost('user/' . $this->normal_user->uid . '/edit/' . $field['category'], $edit, t('Save'));