Skip to content

Commit

Permalink
osxkeychain: TestOSXKeychainHelperRetrieveAliases print err
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <[email protected]>
  • Loading branch information
crazy-max committed May 27, 2023
1 parent b150feb commit a4d4911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osxkeychain/osxkeychain_darwin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func TestOSXKeychainHelperRetrieveAliases(t *testing.T) {
t.Fatalf("Error: failed to store secret for URL %q: %s", tc.storeURL, err)
}
if _, _, err := helper.Get(tc.readURL); err != nil {
t.Errorf("Error: failed to read secret for URL %q using %q", tc.storeURL, tc.readURL)
t.Errorf("Error: failed to read secret for URL %q using %q: %s", tc.storeURL, tc.readURL, err)
}
if err := helper.Delete(tc.storeURL); err != nil {
t.Error(err)
Expand Down

0 comments on commit a4d4911

Please sign in to comment.