Skip to content

Commit d5712b2

Browse files
refactor: standardize string quotes in Validate-Settings.ps1
1 parent 4f7ce05 commit d5712b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Validate-Settings.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ if (-not $SettingsJson) {
1010
Write-Host '✓ Settings retrieved successfully'
1111

1212
# Display the generated settings JSON
13-
Write-Host "========== Generated Settings JSON =========="
13+
Write-Host '========== Generated Settings JSON =========='
1414
$settings = $SettingsJson | ConvertFrom-Json
1515
Write-Host ($settings | ConvertTo-Json -Depth 10)
1616
Write-Host '=============================================='
1717

1818
# Validate against JSON schema
19-
Write-Host "Validating settings against JSON schema..."
19+
Write-Host 'Validating settings against JSON schema...'
2020
$schemaPath = Join-Path -Path $PSScriptRoot -ChildPath '..' -AdditionalChildPath 'scripts', 'Settings.schema.json'
2121
$schema = Get-Content $schemaPath -Raw
2222
$isValid = Test-Json -Json $SettingsJson -Schema $schema
@@ -28,7 +28,7 @@ if (-not $isValid) {
2828
Write-Host '✓ Settings conform to JSON schema'
2929

3030
# Load expected reference settings
31-
Write-Host "Comparing with reference settings..."
31+
Write-Host 'Comparing with reference settings...'
3232
$referencePath = Join-Path $PSScriptRoot 'Settings.json'
3333
$expectedSettings = Get-Content $referencePath -Raw | ConvertFrom-Json
3434

0 commit comments

Comments
 (0)