Skip to content

Commit

Permalink
Fixing more weird spacing problems
Browse files Browse the repository at this point in the history
Not sure why some things were indented, they didn't show up that way in my editor.
  • Loading branch information
Bwatada authored Oct 21, 2021
1 parent bd41ad0 commit 01e7d3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Test-NetStack.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Function Test-NetStack {
[String] $DpdkUser='',
[Parameter(Mandatory = $false)]
[String[]] $DpdkPortIps ='',
[Parameter(Mandatory = $false)]
[Parameter(Mandatory = $false)]
[String] $DpdkNode='',

[Parameter(Mandatory = $false)]
Expand Down Expand Up @@ -1055,7 +1055,7 @@ Function Test-NetStack {
Write-Warning 'Aborted due to unhealthy VDisk.' | Out-File $LogFile -Append -Encoding utf8 -Width 2000
}

$ISS = [System.Management.Automation.Runspaces.InitialSessionState]::CreateDefault()
$ISS = [System.Management.Automation.Runspaces.InitialSessionState]::CreateDefault()
$NetStackHelperModules = Get-ChildItem (Join-Path -Path $PSScriptRoot -ChildPath 'Helpers\*') -Include '*.psm1'
$NetStackHelperModules | ForEach-Object { $ISS.ImportPSModule($_.FullName) }

Expand Down Expand Up @@ -1091,7 +1091,7 @@ Function Test-NetStack {
if ('Fail' -in $StageResults.TestStatus) { $ResultsSummary | Add-Member -MemberType NoteProperty -Name Stage8 -Value 'Fail'; $StageFailures++ }
else { $ResultsSummary | Add-Member -MemberType NoteProperty -Name Stage8 -Value 'Pass' }

$NetStackResults | Add-Member -MemberType NoteProperty -Name Stage8 -Value $StageResults
$NetStackResults | Add-Member -MemberType NoteProperty -Name Stage8 -Value $StageResults
Write-Host "Completed Stage: $thisStage - RDMA Perf VMSwitch Stress - $([System.DateTime]::Now)`r`n"
"Completed Stage: $thisStage - UDP Stress - $([System.DateTime]::Now)`r`n" | Out-File $LogFile -Append -Encoding utf8 -Width 2000
"Stage 8 Results" | Out-File $LogFile -Append -Encoding utf8 -Width 2000
Expand Down

0 comments on commit 01e7d3b

Please sign in to comment.