remove unused param

This commit is contained in:
Jessica Jiang 2025-03-10 13:46:21 -04:00
parent edeb3477b2
commit 71a8d3c5d6

View File

@ -282,10 +282,9 @@ func TestClientAuthenticationUnmarshalCaddyfileWithDirectiveName(t *testing.T) {
func TestClientAuthenticationProvision(t *testing.T) {
tests := []struct {
name string
ca ClientAuthentication
expected ClientAuthentication
wantErr bool
name string
ca ClientAuthentication
wantErr bool
}{
{
name: "specifying both 'CARaw' and 'TrustedCACerts' produces an error",