Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Manuel Cardona committed Jul 17, 2024
1 parent 01a9f4b commit 69b3be7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Provider/SoftonicTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ protected function setUp(): void

public function testGetBaseAuthorizationUrl()
{
$expectedUrl = 'https://oauth-v3.softonic.com/authorize';
$expectedUrl = 'https://oauth-v5.softonic.com/realms/softonic/protocol/openid-connect/authorize';
$this->assertSame($expectedUrl, $this->provider->getBaseAuthorizationUrl());
}

public function testGetBaseAccessTokenUrl()
{
$expectedUrl = 'https://oauth-v3.softonic.com/token';
$expectedUrl = 'https://oauth-v5.softonic.com/realms/softonic/protocol/openid-connect/token';
$this->assertSame($expectedUrl, $this->provider->getBaseAccessTokenUrl([]));
}

Expand Down

0 comments on commit 69b3be7

Please sign in to comment.