From 78364d9f1cb1e08be01a66dda82bdaddf9c441ac Mon Sep 17 00:00:00 2001 From: Jake Bolton Date: Tue, 5 Dec 2023 10:36:14 -0600 Subject: [PATCH] updated test --- Pwsh/Parameters/Using-ThrowIfNullOrWhiteSpace-OnObjects.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pwsh/Parameters/Using-ThrowIfNullOrWhiteSpace-OnObjects.ps1 b/Pwsh/Parameters/Using-ThrowIfNullOrWhiteSpace-OnObjects.ps1 index 5d43d2f..017b519 100644 --- a/Pwsh/Parameters/Using-ThrowIfNullOrWhiteSpace-OnObjects.ps1 +++ b/Pwsh/Parameters/Using-ThrowIfNullOrWhiteSpace-OnObjects.ps1 @@ -10,7 +10,7 @@ [CultureInfo]$Culture = [CultureInfo]::InvariantCulture ) $PSBoundParameters | ConvertTo-Json -Depth 1 -Compress | Write-debug - $null -eq $Culture | Join-String -f 'Cult == $Null: ' | write-verbose -verb + $null -eq $Culture | Join-String -f 'Cult == $Null: {0}' | write-verbose -verb if( [String]::IsNullOrWhiteSpace( $Culture )) { throw "MandatoryCultureWasBlank!" }