diff --git a/kms/uri/uri_test.go b/kms/uri/uri_test.go index 5efa0b91..b23ae8d2 100644 --- a/kms/uri/uri_test.go +++ b/kms/uri/uri_test.go @@ -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()}, }, }