Skip to content

Commit 754da21

Browse files
committed
fix: Improve JSON formatting in Set-Config.Tests.ps1 for better readability
1 parent 54bba5d commit 754da21

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

src/Tests/Unit/Private/Set-Config.Tests.ps1

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@ InModuleScope 'ALZ' {
2222

2323
$config = @'
2424
{
25-
"parameters":{
26-
"Prefix":{
27-
"Type":"UserInput",
28-
"Description":"The prefix that will be added to all resources created by this deployment. (e.g. 'alz')",
29-
"Targets":[
30-
{
31-
"Name":"parTopLevelManagementGroupPrefix",
32-
"Destination":"Parameters"
33-
}
34-
],
35-
"DefaultValue":"alz",
36-
"Value":""
37-
}
25+
"parameters": {
26+
"Prefix": {
27+
"Type": "UserInput",
28+
"Description": "The prefix that will be added to all resources created by this deployment. (e.g. 'alz')",
29+
"Targets": [
30+
{
31+
"Name": "parTopLevelManagementGroupPrefix",
32+
"Destination": "Parameters"
33+
}
34+
],
35+
"DefaultValue": "alz",
36+
"Value": ""
37+
}
3838
}
39-
}
39+
}
4040
'@ | ConvertFrom-Json
4141

4242
Set-Config -configurationParameters $config.Parameters

0 commit comments

Comments
 (0)