plancontext cleanup

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi
2021-12-07 14:20:08 -05:00
parent c881bc2dba
commit a58ca16c3d
8 changed files with 9 additions and 9 deletions

View File

@@ -10,7 +10,7 @@ func TestContext(t *testing.T) {
ctx := New()
secret := ctx.Secrets.New("test")
get, err := ctx.Secrets.FromValue(secret.Value())
get, err := ctx.Secrets.FromValue(secret.MarshalCUE())
require.NoError(t, err)
require.Equal(t, "test", get.PlainText())
}