Skip to content

Commit ecee0e3

Browse files
committed
Remove warnings from testsuite
Signed-off-by: Wesley Schwengle <waterkip@cpan.org>
1 parent 971434a commit ecee0e3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

t/05-soap-binding.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ is($soaped_request->nameid, $request->nameid,
109109
url => 'https://example.com/auth/saml',
110110
key => $sp->key,
111111
cert => $sp->cert,
112-
idp_cert => $idp_cert,
112+
idp_cert => [$idp_cert],
113113
anchors => { $_ => $anchors{$_} }
114114
);
115115
isa_ok($soap, "Net::SAML2::Binding::SOAP");
@@ -122,7 +122,7 @@ is($soaped_request->nameid, $request->nameid,
122122
url => 'https://example.com/auth/saml',
123123
key => $sp->key,
124124
cert => $sp->cert,
125-
idp_cert => $idp_cert,
125+
idp_cert => [ $idp_cert ],
126126
anchors => { subject => 'testsuite failure expected' }
127127
);
128128

t/08-logout-response.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ my $lor = Net::SAML2::Protocol::LogoutResponse->new(
99
issuer => 'http://some/sp',
1010
destination => 'http://some/idp',
1111
status => 'success',
12-
response_to => 'randomID',
12+
in_response_to => 'randomID',
1313
);
1414

1515
isa_ok($lor, 'Net::SAML2::Protocol::LogoutResponse');

0 commit comments

Comments
 (0)