From 0ece1ad7cae6ce864c443f913abba4a04ace76c1 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 5 Nov 2024 12:32:29 +0100 Subject: [PATCH] Fix variable location --- tools/devops/automation/scripts/TestResults.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/devops/automation/scripts/TestResults.psm1 b/tools/devops/automation/scripts/TestResults.psm1 index c06f0da24c57..c93fd2960ae1 100644 --- a/tools/devops/automation/scripts/TestResults.psm1 +++ b/tools/devops/automation/scripts/TestResults.psm1 @@ -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) { @@ -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]