Skip to content

Commit

Permalink
[repo] Fix variable usage in test-aot-compatibility script (#5645)
Browse files Browse the repository at this point in the history
  • Loading branch information
eerhardt committed May 22, 2024
1 parent 0cb89ab commit 574c716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/scripts/test-aot-compatibility.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 574c716

Please sign in to comment.