Skip to content

Commit 200d66d

Browse files
authored
Fix variable usage in test-aot-compatibility script (open-telemetry#1837)
1 parent 1011988 commit 200d66d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/scripts/test-aot-compatibility.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $testPassed = 0
4444
if ($actualWarningCount -ne $expectedWarningCount)
4545
{
4646
$testPassed = 1
47-
Write-Host "Actual warning count:", actualWarningCount, "is not as expected. Expected warning count is:", $expectedWarningCount
47+
Write-Host "Actual warning count:", $actualWarningCount, "is not as expected. Expected warning count is:", $expectedWarningCount
4848
}
4949

5050
Exit $testPassed

0 commit comments

Comments
 (0)