From a2d3d461bc314072b8460b81f5c0ce997f108a56 Mon Sep 17 00:00:00 2001 From: Eric Erhardt Date: Thu, 23 May 2024 14:03:00 -0500 Subject: [PATCH] Fix variable usage in aot script --- build/test-aot.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/test-aot.ps1 b/build/test-aot.ps1 index 6bde9fa6ff..d37dca5c2e 100644 --- a/build/test-aot.ps1 +++ b/build/test-aot.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