Skip to content

Commit

Permalink
Merge pull request #2885 from atc0005/issue-2876-fix-typo-in-test-fat…
Browse files Browse the repository at this point in the history
…alf-messages

fix: Typos in vim25/soap/client CA tests
  • Loading branch information
dougm committed Jun 22, 2022
2 parents 7556da8 + d6dd8fb commit 5aac4f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vim25/soap/client_test.go
Expand Up @@ -111,7 +111,7 @@ func TestMultipleCAPaths(t *testing.T) {

certErr, ok := err.(errInvalidCACertificate)
if !ok {
t.Fatalf("Expected errInvalidCertificate to occur")
t.Fatalf("Expected errInvalidCACertificate to occur")
}
if certErr.File != "fixtures/invalid-cert.pem" {
t.Fatalf("Expected Err to show invalid file")
Expand All @@ -138,7 +138,7 @@ func TestInvalidRootCAs(t *testing.T) {

certErr, ok := err.(errInvalidCACertificate)
if !ok {
t.Fatalf("Expected errInvalidCertificate to occur")
t.Fatalf("Expected errInvalidCACertificate to occur")
}
if certErr.File != "fixtures/invalid-cert.pem" {
t.Fatalf("Expected Err to show invalid file")
Expand Down

0 comments on commit 5aac4f6

Please sign in to comment.