fix quote tests

This commit is contained in:
Graham Knop 2007-08-30 00:15:27 +00:00
parent c707cafe23
commit a6018f798c
2 changed files with 2 additions and 2 deletions

View file

@ -91,7 +91,7 @@ my @macroParamSets = (
},
{
inputText => q|'|,
output => q|"|,
output => q|'|,
comment => 'single quote',
},
);

View file

@ -38,7 +38,7 @@ is($output, $originalCompanyName, "Testing companyName");
$session->setting->set('companyName', q|Gooey's Consulting, LLC|);
$output = WebGUI::Macro::c_companyName::process($session);
is($output, q|Gooey"s Consulting, LLC|, "Testing companyName with embedded quote and comma");
is($output, q|Gooey's Consulting, LLC|, "Testing companyName with embedded quote and comma");
}