Skip to content

Commit

Permalink
update StatusContext with new IDP URL
Browse files Browse the repository at this point in the history
  • Loading branch information
briskt committed May 14, 2024
1 parent e152b6d commit c185677
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions features/bootstrap/StatusContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class StatusContext extends FeatureContext
public function iCheckTheStatusOfThisModule()
{
$client = new Client();
$response = $client->get('http://testweb/module.php/silauth/status.php');
$response = $client->get('http://ssp-idp1.local/module.php/silauth/status.php');
$this->responseCode = $response->getStatusCode();
$this->responseText = $response->getBody()->getContents();
}
Expand All @@ -39,7 +39,7 @@ public function iRequestTheInitialLoginPageOfThisModule()
'cookies' => true,
'http_errors' => false,
]);
$response = $client->get('http://testweb/module.php/core/authenticate.php?as=silauth');
$response = $client->get('http://ssp-idp1.local/module.php/core/authenticate.php?as=silauth');
$this->responseCode = $response->getStatusCode();
}

Expand Down

0 comments on commit c185677

Please sign in to comment.