diff --git a/Rules/Strings.Designer.cs b/Rules/Strings.Designer.cs
index fb6532d29..1d6f12a04 100644
--- a/Rules/Strings.Designer.cs
+++ b/Rules/Strings.Designer.cs
@@ -2366,7 +2366,7 @@ internal static string UseShouldProcessForStateChangingFunctionsDescrption {
}
///
- /// Looks up a localized string similar to Function ’{0}’ has verb that could change system state. Therefore, the function has to support 'ShouldProcess'..
+ /// Looks up a localized string similar to Function '{0}' has verb that could change system state. Therefore, the function has to support 'ShouldProcess'..
///
internal static string UseShouldProcessForStateChangingFunctionsError {
get {
@@ -2636,7 +2636,7 @@ internal static string UseVerboseMessageInDSCResourceDescription {
}
///
- /// Looks up a localized string similar to There is no call to Write-Verbose in DSC function ‘{0}’. If you are using Write-Verbose in a helper function, suppress this rule application..
+ /// Looks up a localized string similar to There is no call to Write-Verbose in DSC function '{0}'. If you are using Write-Verbose in a helper function, suppress this rule application..
///
internal static string UseVerboseMessageInDSCResourceErrorFunction {
get {
diff --git a/Rules/Strings.resx b/Rules/Strings.resx
index 7148ba8ea..aa12ff43f 100644
--- a/Rules/Strings.resx
+++ b/Rules/Strings.resx
@@ -280,7 +280,7 @@
It is a best practice to emit informative, verbose messages in DSC resource functions. This helps in debugging issues when a DSC configuration is executed.
- There is no call to Write-Verbose in DSC function ‘{0}’. If you are using Write-Verbose in a helper function, suppress this rule application.
+ There is no call to Write-Verbose in DSC function '{0}'. If you are using Write-Verbose in a helper function, suppress this rule application.
Use verbose message in DSC resource
@@ -658,7 +658,7 @@
Functions that have verbs like New, Start, Stop, Set, Reset, Restart that change system state should support 'ShouldProcess'.
- Function ’{0}’ has verb that could change system state. Therefore, the function has to support 'ShouldProcess'.
+ Function '{0}' has verb that could change system state. Therefore, the function has to support 'ShouldProcess'.
UseShouldProcessForStateChangingFunctions
diff --git a/Tests/DisabledRules/ProvideVerboseMessage.tests.ps1 b/Tests/DisabledRules/ProvideVerboseMessage.tests.ps1
index 78f3d1a27..6f52cc709 100644
--- a/Tests/DisabledRules/ProvideVerboseMessage.tests.ps1
+++ b/Tests/DisabledRules/ProvideVerboseMessage.tests.ps1
@@ -1,5 +1,5 @@
Import-Module PSScriptAnalyzer
-$violationMessage = [regex]::Escape("There is no call to Write-Verbose in the function ‘Verb-Files’.")
+$violationMessage = [regex]::Escape("There is no call to Write-Verbose in the function 'Verb-Files'.")
$violationName = "PSProvideVerboseMessage"
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$violations = Invoke-ScriptAnalyzer $directory\BadCmdlet.ps1 | Where-Object {$_.RuleName -eq $violationName}
diff --git a/Tests/Rules/UseShouldProcessForStateChangingFunctions.tests.ps1 b/Tests/Rules/UseShouldProcessForStateChangingFunctions.tests.ps1
index f37a7f1c2..747ef3318 100644
--- a/Tests/Rules/UseShouldProcessForStateChangingFunctions.tests.ps1
+++ b/Tests/Rules/UseShouldProcessForStateChangingFunctions.tests.ps1
@@ -1,5 +1,5 @@
Import-Module PSScriptAnalyzer
-$violationMessage = "Function ’Set-MyObject’ has verb that could change system state. Therefore, the function has to support 'ShouldProcess'"
+$violationMessage = "Function 'Set-MyObject' has verb that could change system state. Therefore, the function has to support 'ShouldProcess'"
$violationName = "PSUseShouldProcessForStateChangingFunctions"
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$violations = Invoke-ScriptAnalyzer $directory\UseShouldProcessForStateChangingFunctions.ps1 | Where-Object {$_.RuleName -eq $violationName}
diff --git a/Tests/Rules/UseVerboseMessageInDSCResource.Tests.ps1 b/Tests/Rules/UseVerboseMessageInDSCResource.Tests.ps1
index d181bb628..f78dff5ee 100644
--- a/Tests/Rules/UseVerboseMessageInDSCResource.Tests.ps1
+++ b/Tests/Rules/UseVerboseMessageInDSCResource.Tests.ps1
@@ -1,6 +1,6 @@
Import-Module PSScriptAnalyzer
-$violationMessage = "There is no call to Write-Verbose in DSC function ‘Test-TargetResource’. If you are using Write-Verbose in a helper function, suppress this rule application."
+$violationMessage = "There is no call to Write-Verbose in DSC function 'Test-TargetResource'. If you are using Write-Verbose in a helper function, suppress this rule application."
$violationName = "PSDSCUseVerboseMessageInDSCResource"
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$violations = Invoke-ScriptAnalyzer $directory\DSCResourceModule\DSCResources\MSFT_WaitForAll\MSFT_WaitForAll.psm1 | Where-Object {$_.RuleName -eq $violationName}