diff --git a/t/HTML.t b/t/HTML.t
index a1b143ae6..bdc380d43 100644
--- a/t/HTML.t
+++ b/t/HTML.t
@@ -91,7 +91,7 @@ my @macroParamSets = (
},
{
inputText => q|'|,
- output => q|"|,
+ output => q|'|,
comment => 'single quote',
},
);
diff --git a/t/Macro/c_companyName.t b/t/Macro/c_companyName.t
index 51ed82d75..3367287ce 100644
--- a/t/Macro/c_companyName.t
+++ b/t/Macro/c_companyName.t
@@ -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");
}