Skip to content

Commit

Permalink
Fix variable usage in aot script (#2610)
Browse files Browse the repository at this point in the history
  • Loading branch information
eerhardt committed May 24, 2024
1 parent ff53760 commit 9adc0ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/test-aot.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 9adc0ef

Please sign in to comment.