File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -601,5 +601,5 @@ Write-JsonResult ([ordered]@{
601601 pairing = " adjacent positions 1-2 and 3-4 within each restart-per-run block"
602602 estimator = " exp(median(paired log(B/A)))"
603603 confidenceInterval = " deterministic paired bootstrap percentile 95% CI"
604- results = @ ($results )
604+ results = @ ($results.ToArray () )
605605})
Original file line number Diff line number Diff line change @@ -660,8 +660,8 @@ function Export-PcapFieldsCsv {
660660
661661 & $tshark @arguments 2> $ErrorPath | Set-Content - LiteralPath $CsvPath - Encoding UTF8
662662 $exitCode = $LASTEXITCODE
663- $standardError = if (Test-Path - LiteralPath $ErrorPath ) {
664- Get-Content - LiteralPath $ErrorPath - Raw - Encoding UTF8
663+ [ string ] $standardError = if (Test-Path - LiteralPath $ErrorPath ) {
664+ [ string ]( Get-Content - LiteralPath $ErrorPath - Raw - Encoding UTF8)
665665 } else { " " }
666666 if ($exitCode -ne 0 ) {
667667 throw " tshark field export failed (exit $exitCode ): $standardError "
You can’t perform that action at this time.
0 commit comments