Skip to content

Commit

Permalink
Fix variable location
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfbjarne committed Nov 5, 2024
1 parent c7cf563 commit 0ece1ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/devops/automation/scripts/TestResults.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,7 @@ function New-ParallelTestsResults {
Write-Host "Test suites:"
Write-Host $suites.Keys

$tests = [System.Collections.SortedList]::new()
foreach ($kvp in $stageDep.GetEnumerator()) {
$candidate = $kvp.Value
if ($candidate.tests.outputs -eq $null) {
Expand All @@ -522,7 +523,6 @@ function New-ParallelTestsResults {

Write-Host "Outputs for $($testStage):"
Write-Host $outputs
$tests = [System.Collections.SortedList]::new()
foreach ($name in $outputs.Keys) {
if ($name.EndsWith(".TESTS_LABEL")) {
$label = $outputs[$name]
Expand Down

0 comments on commit 0ece1ad

Please sign in to comment.