Skip to content

Commit

Permalink
FooClientForOAuth2Test to FooClientForOAuth2
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-janu committed Apr 24, 2023
1 parent 3f3bdcd commit 2d91976
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -29,7 +29,7 @@
use JanuSoftware\Facebook\Request;
use JanuSoftware\Facebook\Response;

class FooClientForOAuth2Test extends Client
class FooClientForOAuth2 extends Client
{
protected string $response = '';

Expand Down
4 changes: 2 additions & 2 deletions tests/Authentication/OAuth2ClientTest.php
Expand Up @@ -39,14 +39,14 @@ class OAuth2ClientTest extends TestCase
*/
public const TESTING_GRAPH_VERSION = 'v1337';

protected FooClientForOAuth2Test $client;
protected FooClientForOAuth2 $client;
protected OAuth2Client $oauth;


protected function setUp(): void
{
$app = new Application('123', 'foo_secret');
$this->client = new FooClientForOAuth2Test;
$this->client = new FooClientForOAuth2;
$this->oauth = new OAuth2Client($app, $this->client, static::TESTING_GRAPH_VERSION);
}

Expand Down

0 comments on commit 2d91976

Please sign in to comment.