Skip to content

Commit

Permalink
syntax err
Browse files Browse the repository at this point in the history
  • Loading branch information
freddydk committed Jun 20, 2024
1 parent 082a94c commit f1dfe50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Actions/AnalyzeTests/TestResultAnalyzer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function GetTestResultSummaryMD {
$appTime = 0.0
$appFailed = 0
$appSkipped = 0
$suites = $testResults.testsuites.testsuite | where-Object { $_.Properties.property | Where-Object $_.Name -eq 'appName' -and $_.Value -eq $appName } }
$suites = $testResults.testsuites.testsuite | where-Object { $_.Properties.property | Where-Object { $_.Name -eq 'appName' -and $_.Value -eq $appName } }
foreach($suite in $suites) {
$appTests += [int]$suite.tests
$appFailed += [int]$suite.failures
Expand Down

0 comments on commit f1dfe50

Please sign in to comment.