Skip to content

Commit

Permalink
remove duplicate tests
Browse files Browse the repository at this point in the history
  • Loading branch information
himran92 committed Nov 28, 2024
1 parent c0e0eb0 commit 91cd02b
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions saml/response_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 91cd02b

Please sign in to comment.