Skip to content

Commit

Permalink
CT-1402 - only log canManageTokens deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtabiberle committed May 13, 2024
1 parent 43e9736 commit 007bad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ProjectsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1177,7 +1177,7 @@ public function testCreateProjectStorageTokenWithMangeTokensPermissionAndCompone
$verified = $client->verifyToken();
$this->assertEquals($project['id'], $verified['owner']['id']);
$this->assertTrue($verified['canManageBuckets']);
$this->assertFalse($verified['canManageTokens']); // we do not support canManageTokens in storage tokens
$this->assertTrue($verified['canManageTokens']);
$this->assertTrue($verified['canReadAllFileUploads']);

$requestedComponents = ['component1', 'component2', 'component3'];
Expand Down

0 comments on commit 007bad9

Please sign in to comment.