Skip to content

Commit

Permalink
revert changes to verify mutation test
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham-bansal96 committed Sep 8, 2023
1 parent 9bebb5f commit 00404bd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/Command/CodeStudio/CodeStudioCiCdVariables.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,28 @@ public static function getDefaults(?string $cloudApplicationUuid = NULL, ?string
return [
[
'key' => 'ACQUIA_APPLICATION_UUID',
'masked' => TRUE,
'masked' => FALSE,
'protected' => FALSE,
'value' => $cloudApplicationUuid,
'variable_type' => 'env_var',
],
[
'key' => 'ACQUIA_CLOUD_API_TOKEN_KEY',
'masked' => TRUE,
'masked' => FALSE,
'protected' => FALSE,
'value' => $cloudKey,
'variable_type' => 'env_var',
],
[
'key' => 'ACQUIA_CLOUD_API_TOKEN_SECRET',
'masked' => TRUE,
'masked' => FALSE,
'protected' => FALSE,
'value' => $cloudSecret,
'variable_type' => 'env_var',
],
[
'key' => 'ACQUIA_GLAB_TOKEN_NAME',
'masked' => TRUE,
'masked' => FALSE,
'protected' => FALSE,
'value' => $projectAccessTokenName,
'variable_type' => 'env_var',
Expand Down
4 changes: 2 additions & 2 deletions tests/phpunit/src/CommandTestBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -621,15 +621,15 @@ protected function getMockGitLabVariables(): array {
0 => [
'environment_scope' => '*',
'key' => 'ACQUIA_APPLICATION_UUID',
'masked' => TRUE,
'masked' => FALSE,
'protected' => FALSE,
'value' => '2b3f7cf0-6602-4590-948b-3b07b1b005ef',
'variable_type' => 'env_var',
],
1 => [
'environment_scope' => '*',
'key' => 'ACQUIA_CLOUD_API_TOKEN_KEY',
'masked' => TRUE,
'masked' => FALSE,
'protected' => FALSE,
'value' => '111aae74-e81a-4052-b4b9-a27a62e6b6a6',
'variable_type' => 'env_var',
Expand Down

0 comments on commit 00404bd

Please sign in to comment.