summaryrefslogtreecommitdiff
path: root/modules/node/node.test
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-29 20:45:17 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-29 20:45:17 +0000
commit706d737ca1f41a9491c9413216f13a9d5b4fc26c (patch)
treef6679398839e877194db91274c1bf010fd617ba5 /modules/node/node.test
parent88df17380a7d26c009bb7f52e56579668080169f (diff)
downloadbrdo-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.test4
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.'));
}
}