Skip to content

Commit 089378e

Browse files
🩹 [Refactor]: Improve formatting in Gather-Tests workflow by adjusting object creation for better readability
1 parent 0147c13 commit 089378e

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

‎.github/workflows/Gather-Tests.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,13 @@ jobs:
8282
$shellsToTest | ForEach-Object {
8383
$shell = $_
8484
$testPath = Resolve-Path -Path $testSuite | Select-Object -ExpandProperty Path
85-
$tests.Add([pscustomobject]@{
86-
OS = $os
87-
Path = $testPath
88-
Shell = $shell
89-
})
85+
$tests.Add(
86+
[pscustomobject]@{
87+
OS = $os
88+
Path = $testPath
89+
Shell = $shell
90+
}
91+
)
9092
}
9193
}
9294
}

0 commit comments

Comments
 (0)