We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba68307 commit ccc1a43Copy full SHA for ccc1a43
cmd/credentials_test.go
@@ -18,7 +18,7 @@ func TestValidSelectorParsing(t *testing.T) {
18
"Key=x509Issuer,Value=CN=Issuer",
19
}
20
for _, fixture := range fixtures {
21
- _, err := PopulateCertIdentifier(fixture)
+ _, err := PopulateCertIdentifier(fixture, "MY")
22
if err != nil {
23
t.Log("Unable to populate cert identifier from selector")
24
t.Fail()
@@ -36,7 +36,7 @@ func TestInvalidSelectorParsing(t *testing.T) {
36
"Key=aljsdf,Value=aljsdfadsf",
37
38
39
40
if err == nil {
41
t.Log("Expected parsing failure, but received none")
42
0 commit comments