diff --git a/saml/response_test.go b/saml/response_test.go index 4fdfef2..97433ba 100644 --- a/saml/response_test.go +++ b/saml/response_test.go @@ -89,22 +89,6 @@ func TestServiceProvider_ParseResponse(t *testing.T) { requestID: testRequestId, wantErrContains: "invalid signature", }, - { - name: "error missing signature", - sp: testSp, - samlResp: base64.StdEncoding.EncodeToString([]byte(tp.SamlResponse(t))), - opts: []saml.Option{}, - requestID: testRequestId, - wantErrContains: "response and/or assertions must be signed", - }, - { - name: "error-invalid-signature", - sp: testSp, - samlResp: base64.StdEncoding.EncodeToString([]byte(tp.SamlResponse(t))), - opts: []saml.Option{}, - requestID: testRequestId, - wantErrContains: "response and/or assertions must be signed", - }, { name: "err-assertion-missing-attribute-stmt", sp: testSp,