diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-29 20:45:17 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-29 20:45:17 +0000 |
commit | 706d737ca1f41a9491c9413216f13a9d5b4fc26c (patch) | |
tree | f6679398839e877194db91274c1bf010fd617ba5 /modules/node/node.test | |
parent | 88df17380a7d26c009bb7f52e56579668080169f (diff) | |
download | brdo-706d737ca1f41a9491c9413216f13a9d5b4fc26c.tar.gz brdo-706d737ca1f41a9491c9413216f13a9d5b4fc26c.tar.bz2 |
#639428 by sun and yched: Remove #process pattern from text field.
Diffstat (limited to 'modules/node/node.test')
-rw-r--r-- | modules/node/node.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/node/node.test b/modules/node/node.test index 2fd36a97c..fc633d2db 100644 --- a/modules/node/node.test +++ b/modules/node/node.test @@ -912,7 +912,7 @@ class NodeTypeTestCase extends DrupalWebTestCase { // Verify that title and body fields are displayed. $this->drupalGet('node/add/page'); $this->assertRaw('Title', t('Title field was found.')); - $this->assertRaw('Full text', t('Body field was found.')); + $this->assertRaw('Body', t('Body field was found.')); // Rename the title field and remove the body field. $edit = array( @@ -946,7 +946,7 @@ class NodeTypeTestCase extends DrupalWebTestCase { $this->clickLink('Bar'); $this->assertEqual(url('node/add/bar', array('absolute' => TRUE)), $this->getUrl(), t('New machine name was used in URL.')); $this->assertRaw('Foo', t('Title field was found.')); - $this->assertRaw('Full text', t('Body field was found.')); + $this->assertRaw('Baz', t('Body field was found.')); } } |