Fix tests that were using var.

This commit is contained in:
Colin Kuskie 2010-11-18 08:40:22 -08:00
parent c4553012d1
commit 678406d54d
9 changed files with 17 additions and 17 deletions

View file

@ -32,7 +32,7 @@ use Test::MockObject::Extends;
##try and implement the mod_perl cookie handling code.
$http = Test::MockObject::Extends->new($http);
my $cookieName = $session->config->getCookieName;
my $varId = $session->var->getId();
my $varId = $session->getId();
$http->mock( getCookies => sub { return {$cookieName => $varId} } );