@@ -452,65 +452,65 @@ in {
452452 '' ;
453453
454454 scripts . test-certinfo-tlsendpoint . exec = ''
455- gum format "## test certinfo tlsEnpoint "
455+ gum format "## test certinfo tlsEndpoint "
456456 ./dist/https-wrench certinfo --tls-endpoint repo.os76.xyz:443
457457 '' ;
458458
459459 scripts . test-certinfo-tlsendpoint-wrong-ca-file . exec = ''
460- gum format "## test certinfo tlsEnpoint with wrong CA file"
460+ gum format "## test certinfo tlsEndpoint with wrong CA file"
461461 set +o pipefail
462462 ./dist/https-wrench certinfo --tls-endpoint repo.os76.xyz:443 --ca-bundle $CAROOT/rootCA.pem 2>&1 | grep 'certificate signed by unknown authority'
463463 '' ;
464464
465465 scripts . test-certinfo-tlsendpoint-servername . exec = ''
466- gum format "## test certinfo tlsEnpoint servername"
466+ gum format "## test certinfo tlsEndpoint servername"
467467 ./dist/https-wrench certinfo --tls-endpoint repo.os76.xyz:443 --tls-servername www.os76.xyz
468468 '' ;
469469
470470 scripts . test-certinfo-tlsendpoint-timeout . exec = ''
471- gum format "## test certinfo tlsEnpoint timeout"
471+ gum format "## test certinfo tlsEndpoint timeout"
472472 set +o pipefail
473473 ./dist/https-wrench certinfo --tls-endpoint repo.os76.xyz:344 2>&1 | grep timeout
474474 '' ;
475475
476476 scripts . test-certinfo-tlsendpoint-malformed . exec = ''
477- gum format "## test certinfo tlsEnpoint malformed (missing port)"
477+ gum format "## test certinfo tlsEndpoint malformed (missing port)"
478478 set +o pipefail
479479 ./dist/https-wrench certinfo --tls-endpoint repo.os76.xyz | grep 'missing port in address'
480480 '' ;
481481
482482 scripts . test-certinfo-tlsendpoint-insecure . exec = ''
483- gum format "## test certinfo tlsEnpoint Insecure"
483+ gum format "## test certinfo tlsEndpoint Insecure"
484484 ./dist/https-wrench certinfo --tls-endpoint localhost:9443 --tls-insecure | grep 'certificate signed by unknown authority'
485485 '' ;
486486
487487 scripts . test-certinfo-tlsendpoint-ca-bundle . exec = ''
488- gum format "## test certinfo tlsEnpoint + ca-bundle"
488+ gum format "## test certinfo tlsEndpoint + ca-bundle"
489489 ./dist/https-wrench certinfo --tls-endpoint localhost:9443 --ca-bundle $CAROOT/rootCA.pem
490490 '' ;
491491
492492 scripts . test-certinfo-tlsendpoint-ca-bundle-ipv4 . exec = ''
493- gum format "## test certinfo IPv4 tlsEnpoint + ca-bundle"
493+ gum format "## test certinfo IPv4 tlsEndpoint + ca-bundle"
494494 ./dist/https-wrench certinfo --tls-endpoint 127.0.0.1:9443 --ca-bundle $CAROOT/rootCA.pem
495495 '' ;
496496
497497 scripts . test-certinfo-tlsendpoint-ca-bundle-ipv6 . exec = ''
498- gum format "## test certinfo IPV6 tlsEnpoint + ca-bundle "
498+ gum format "## test certinfo IPV6 tlsEndpoint + ca-bundle "
499499 ./dist/https-wrench certinfo --tls-endpoint [::1]:9443 --ca-bundle $CAROOT/rootCA.pem
500500 '' ;
501501
502502 scripts . test-certinfo-tlsendpoint-rsa-key-cert . exec = ''
503- gum format "## test certinfo tlsEnpoint : RSA key + cert"
503+ gum format "## test certinfo tlsEndpoint : RSA key + cert"
504504 ./dist/https-wrench certinfo --tls-endpoint localhost:9443 --tls-insecure --tls-servername example.com --key-file $CAROOT/key.pem | grep 'PrivateKey match: true'
505505 '' ;
506506
507507 scripts . test-certinfo-tlsendpoint-ecdsa-key-cert . exec = ''
508- gum format "## test certinfo tlsEnpoint : ECDSA key + cert"
508+ gum format "## test certinfo tlsEndpoint : ECDSA key + cert"
509509 ./dist/https-wrench certinfo --tls-endpoint localhost:9446 --tls-insecure --tls-servername example.com --key-file $ECDSA_DIR/ecdsa.key | grep 'PrivateKey match: true'
510510 '' ;
511511
512512 scripts . test-certinfo-tlsendpoint-ed25519-key-cert . exec = ''
513- gum format "## test certinfo tlsEnpoint : ED25519 key + cert"
513+ gum format "## test certinfo tlsEndpoint : ED25519 key + cert"
514514 ./dist/https-wrench certinfo --tls-endpoint localhost:9445 --tls-insecure --tls-servername example.com --key-file $ED25519_DIR/ed25519.key | grep 'PrivateKey match: true'
515515 '' ;
516516
0 commit comments