Skip to content

Commit

Permalink
Fix ip-address inside test function broken by merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
kitography committed Feb 3, 2025
1 parent c255d1e commit 0543204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/logical/pki/cert_util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ func TestParseCertificate(t *testing.T) {
},
DNSNames: []string{"example.com", "www.example.com"},
EmailAddresses: []string{"[email protected]", "[email protected]"},
IPAddresses: []net.IP{[]byte{192, 0, 2, 1}, []byte{192, 0, 2, 2}},
IPAddresses: []net.IP{[]byte{1, 2, 3, 4}, []byte{1, 2, 3, 5}},
URIs: []*url.URL{parseURL("https://example.com"), parseURL("https://www.example.com")},
OtherSANs: map[string][]string{"1.3.6.1.4.1.311.20.2.3": {"[email protected]"}},
IsCA: false,
Expand Down

0 comments on commit 0543204

Please sign in to comment.