Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusStorhaug committed Mar 28, 2024
1 parent b4004b9 commit ad02750
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/PublicIP.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ Describe 'PublicIP' {
It 'Should return the public IP address' {
$PublicIP = Get-PublicIP
$PublicIP | Should -Not -BeNullOrEmpty
Write-Verbose $PublicIP -Verbose
Write-Verbose ($PublicIP | Out-String) -Verbose
}

It 'Should return the public IP address from MyIP' {
$PublicIP = Get-PublicIP -Provider MyIP
$PublicIP | Should -Not -BeNullOrEmpty
Write-Verbose $PublicIP -Verbose
Write-Verbose ($PublicIP | Out-String) -Verbose
}
}
}

0 comments on commit ad02750

Please sign in to comment.