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

@ -93,7 +93,7 @@ is ($newSessionCount, $sessionCount+2, 'two of the sessions were deleted');
is ($newScratchCount, $scratchCount+2, 'scratch from both sessions cleaned up');
foreach my $testSession (@sessions) {
$testSession->var->end;
$testSession->end;
$testSession->close;
}