Keep the 'default' prefix for secret items

This commit is contained in:
André Laszlo
2024-12-06 17:40:08 +01:00
parent 19b4359b17
commit eb82b4a753
2 changed files with 3 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ class GcpSecretManagerAdapterTest < SecretAdapterTestCase
json = JSON.parse(shellunescape(run_command("fetch", "mypassword")))
expected_json = { "mypassword"=>"secret123" }
expected_json = { "default/mypassword"=>"secret123" }
assert_equal expected_json, json
end