summaryrefslogtreecommitdiff
path: root/modules/node/node.test
diff options
context:
space:
mode:
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 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.'));
}
}