Commit f35d863 1 parent ab9a798 commit f35d863 Copy full SHA for f35d863
File tree 1 file changed +2
-2
lines changed
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) {
17
17
}
18
18
vault .Logger .SetLevel (logrus .ErrorLevel )
19
19
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 {
21
21
t .Errorf ("vault initialization failed: %+v" , err )
22
22
}
23
23
}
@@ -29,7 +29,7 @@ func TestVault_GetEntries(t *testing.T) {
29
29
vault .Logger .SetLevel (logrus .ErrorLevel )
30
30
defer vault .Close ()
31
31
32
- if err := vault .Initialize (vaultPath , VaultAccessData {Password : testPassword }); err != nil {
32
+ if err := vault .Initialize (vaultPath , & VaultAccessData {Password : testPassword }); err != nil {
33
33
t .Errorf ("vault initialization failed: %+v" , err )
34
34
}
35
35
You can’t perform that action at this time.
0 commit comments