Remove obsolete test

This commit is contained in:
Matthew Holt 2015-10-17 11:19:56 -06:00
parent 06913ab74f
commit 307c2ffe3c

View File

@ -70,14 +70,7 @@ func TestTLSParseIncompleteParams(t *testing.T) {
_, err := TLS(c)
if err == nil {
t.Errorf("Expected errors, but no error returned")
}
c = NewTestController(`tls cert.key`)
_, err = TLS(c)
if err == nil {
t.Errorf("Expected errors, but no error returned")
t.Errorf("Expected errors (first check), but no error returned")
}
}