Skip to content
This repository was archived by the owner on Mar 23, 2024. It is now read-only.

Commit 74736c5

Browse files
committed
🔧
1 parent dae4592 commit 74736c5

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

tests/API/OAuth2APITestAbstract.php

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function testOAuth2Instance(){
4242
public function testRequestCredentialsToken(){
4343

4444
if(!$this->provider instanceof ClientCredentials){
45-
$this->markTestSkipped('not supported');
45+
$this->markTestSkipped('skipped test: not supported');
4646
}
4747

4848
$token = $this->provider->getClientCredentialsToken();
@@ -57,17 +57,4 @@ public function testRequestCredentialsToken(){
5757
print_r($token);
5858
}
5959

60-
/**
61-
* @expectedException \chillerlan\OAuth\Providers\ProviderException
62-
* @expectedExceptionMessage not supported
63-
*/
64-
public function testRequestCredentialsTokenNotSupportedException(){
65-
66-
if($this->provider instanceof ClientCredentials){
67-
$this->markTestSkipped('does not apply');
68-
}
69-
70-
$this->provider->getClientCredentialsToken();
71-
}
72-
7360
}

0 commit comments

Comments
 (0)