Fix unit tests

This commit is contained in:
Maxime Besson 2019-08-02 09:51:05 +02:00
parent 15c3b0bbf8
commit 0febdda551
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ ok(
);
my $c = getCookies($res);
ok( not( %$c{'lemonldap'} ), 'Cookie expired' ) or print STDERR Dumper($c);
ok( not( $c->{'lemonldap'} ), 'Cookie expired' ) or print STDERR Dumper($c);
count(2);
expectRedirection( $res, 'http://auth.example.com/' );

View File

@ -81,7 +81,7 @@ SKIP: {
);
my $c = getCookies($res);
ok( not( %$c{'lemonldap'} ), 'Cookie expired' ) or print STDERR Dumper($c);
ok( not( $c->{'lemonldap'} ), 'Cookie expired' ) or print STDERR Dumper($c);
count(2);
expectRedirection( $res, 'http://auth.example.com/' );