diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-02-09 12:29:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-02-09 12:29:39 +0000 |
commit | a2ec3c3852d825c407e10a0ca76470f8026a33d7 (patch) | |
tree | 6a49c6c41061c5941f89393c6ca9c084bbb07caa /modules/node | |
parent | 7e8709b2dc0236232451d02a8cf440f290f6c63f (diff) | |
download | brdo-a2ec3c3852d825c407e10a0ca76470f8026a33d7.tar.gz brdo-a2ec3c3852d825c407e10a0ca76470f8026a33d7.tar.bz2 |
- Patch #708144 by lilou: remove double semicolons at end of line.
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/node.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.test b/modules/node/node.test index cfd2b2c2b..31404a6b8 100644 --- a/modules/node/node.test +++ b/modules/node/node.test @@ -310,7 +310,7 @@ class PageEditTestCase extends DrupalWebTestCase { $langcode = LANGUAGE_NONE; $body_key = "body[$langcode][0][value]"; $edit = array(); - $edit['title'] = $this->randomName(8);; + $edit['title'] = $this->randomName(8); $edit[$body_key] = $this->randomName(16); $this->drupalPost('node/add/page', $edit, t('Save')); |