Update Style test to check for new return value.

Fix broken labels in CS Help and hover help.
This commit is contained in:
Colin Kuskie 2006-11-08 23:28:55 +00:00
parent f7674615d4
commit ce617607a8
3 changed files with 3 additions and 3 deletions

View file

@ -163,7 +163,7 @@ our $HELP = {
},
{
title => 'display last reply',
description => 'display last reply help',
description => 'display last reply description',
namespace => 'Asset_Collaboration',
},
{

View file

@ -1064,7 +1064,7 @@ properties listed below:</p>
'display last reply description' => {
message => q|If set to Yes, template variables will be added to allow the display the last Post.|,
lastUpdated => 1119070429,
lastUpdated => 1163013333,
},
'system template description' => {

View file

@ -59,7 +59,7 @@ my ($url, $params);
($url) = simpleLinkParser('link', $style->generateAdditionalHeadTags);
is($url, '-', 'setLink: called with no params or link url');
is($style->generateAdditionalHeadTags(), '', 'generateAdditionalHeadTags: returns empty string since nothing has been set');
is($style->generateAdditionalHeadTags(), undef, 'generateAdditionalHeadTags: returns undef since nothing has been set');
$style->setLink('http://www.plainblack.com');
($url) = simpleLinkParser('link', $style->generateAdditionalHeadTags);