We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 036059a commit c412186Copy full SHA for c412186
tests/MonkeyWebRequestsAPI.Tests.ps1
@@ -9,11 +9,11 @@ Describe 'Star Wars' {
9
Import-Module $MyModule -Force
10
}
11
It 'Get Han Solo height' {
12
- Invoke-MonkeyWebRequest -url "https://swapi.dev/api/people/14" | Select-Object -ExpandProperty height | Should -Be '180'
+ Invoke-MonkeyWebRequest -url "https://swapi.info/api/people/14" | Select-Object -ExpandProperty height | Should -Be '180'
13
14
15
It 'Han Solo is Id = 14' {
16
- $Han = Invoke-MonkeyWebRequest -url "https://swapi.dev/api/people/14"
+ $Han = Invoke-MonkeyWebRequest -url "https://swapi.info/api/people/14"
17
$Han.name | Should -Be 'Han Solo'
18
19
0 commit comments