Skip to content

Commit

Permalink
Fix function name
Browse files Browse the repository at this point in the history
  • Loading branch information
kapishps committed Aug 29, 2024
1 parent 60716e8 commit aba7bc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions secretmanager/test/regionalsecretmanagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public static function tearDownAfterClass(): void
{
$options = ['apiEndpoint' => 'secretmanager.' . self::$locationId . '.rep.googleapis.com' ];
self::$client = new SecretManagerServiceClient($options);

self::deleteSecret(self::$testSecret->getName());
self::deleteSecret(self::$testSecretToDelete->getName());
self::deleteSecret(self::$testSecretWithVersions->getName());
Expand Down Expand Up @@ -290,7 +290,7 @@ public function testListSecrets()
{
$name = self::$client->parseName(self::$testSecret->getName());

$output = $this->runFunctionSnippet('list_regional_secret', [
$output = $this->runFunctionSnippet('list_regional_secrets', [
$name['project'],
$name['location'],
]);
Expand Down

0 comments on commit aba7bc2

Please sign in to comment.