diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-29 04:16:15 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-29 04:16:15 +0000 |
commit | 770e0d54f9c5b33c4d01b5cefe652b61b132dc0c (patch) | |
tree | 1f4e71de273adab60b46791aad3beb673c3b05a1 /modules/node/node.test | |
parent | 5c5b3a149a928b4c6761a0b9161d383a83677ec7 (diff) | |
download | brdo-770e0d54f9c5b33c4d01b5cefe652b61b132dc0c.tar.gz brdo-770e0d54f9c5b33c4d01b5cefe652b61b132dc0c.tar.bz2 |
#364470 by stBorchert and JohnAlbin: Made theming of 'Submitted by author, on date' easier.
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 389494b57..0de3355ca 100644 --- a/modules/node/node.test +++ b/modules/node/node.test @@ -533,7 +533,7 @@ class NodePostSettingsTestCase extends DrupalWebTestCase { // Check that the post information is displayed. $node = $this->drupalGetNodeByTitle($edit['title']); - $this->assertRaw(theme('node_submitted', $node), t('Post information is displayed.')); + $this->assertRaw('<span class="submitted">', t('Post information is displayed.')); } /** @@ -555,7 +555,7 @@ class NodePostSettingsTestCase extends DrupalWebTestCase { // Check that the post information is displayed. $node = $this->drupalGetNodeByTitle($edit['title']); - $this->assertNoRaw(theme('node_submitted', $node), t('Post information is not displayed.')); + $this->assertNoRaw('<span class="submitted">', t('Post information is not displayed.')); } } |