From bb87da64844c439e170abcd8a2a5d3da7af86193 Mon Sep 17 00:00:00 2001 From: Eric Erhardt Date: Wed, 22 May 2024 14:20:41 -0500 Subject: [PATCH] Fix variable usage in test-aot-compatibility script Minor fix up of the powershell script. --- build/scripts/test-aot-compatibility.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/test-aot-compatibility.ps1 b/build/scripts/test-aot-compatibility.ps1 index ca04cfe3de..5687ba1d25 100644 --- a/build/scripts/test-aot-compatibility.ps1 +++ b/build/scripts/test-aot-compatibility.ps1 @@ -44,7 +44,7 @@ $testPassed = 0 if ($actualWarningCount -ne $expectedWarningCount) { $testPassed = 1 - Write-Host "Actual warning count:", actualWarningCount, "is not as expected. Expected warning count is:", $expectedWarningCount + Write-Host "Actual warning count:", $actualWarningCount, "is not as expected. Expected warning count is:", $expectedWarningCount } Exit $testPassed