File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ func TestVault_Initialize(t *testing.T) {
1717 }
1818 vault .Logger .SetLevel (logrus .ErrorLevel )
1919 defer vault .Close ()
20- if err := vault .Initialize (vaultPath , VaultAccessData {Password : testPassword }); err != nil {
20+ if err := vault .Initialize (vaultPath , & VaultAccessData {Password : testPassword }); err != nil {
2121 t .Errorf ("vault initialization failed: %+v" , err )
2222 }
2323}
@@ -29,7 +29,7 @@ func TestVault_GetEntries(t *testing.T) {
2929 vault .Logger .SetLevel (logrus .ErrorLevel )
3030 defer vault .Close ()
3131
32- if err := vault .Initialize (vaultPath , VaultAccessData {Password : testPassword }); err != nil {
32+ if err := vault .Initialize (vaultPath , & VaultAccessData {Password : testPassword }); err != nil {
3333 t .Errorf ("vault initialization failed: %+v" , err )
3434 }
3535
You can’t perform that action at this time.
0 commit comments