Skip to content

Commit

Permalink
Update variable names in test
Browse files Browse the repository at this point in the history
Co-authored-by: Herman Slatman <[email protected]>
  • Loading branch information
maraino and hslatman authored Jan 14, 2025
1 parent f3ae27e commit 7cf227d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kms/uri/uri_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -379,14 +379,14 @@ func TestURI_Read(t *testing.T) {

path := filepath.Join(t.TempDir(), "management.key")
require.NoError(t, os.WriteFile(path, expected, 0600))
pinURI := &url.URL{
managementKeyURI := &url.URL{
Scheme: "file",
Path: path,
}
pathURI := &URI{
URL: &url.URL{Scheme: "yubikey"},
Values: url.Values{
"management-key-source": []string{pinURI.String()},
"management-key-source": []string{managementKeyURI.String()},
},
}

Expand Down

0 comments on commit 7cf227d

Please sign in to comment.