fixed postfix object notation

This commit is contained in:
David Delikat 2009-02-23 04:51:45 +00:00
parent 65a0c7bbae
commit 8adae35947

View file

@ -192,8 +192,8 @@ plan tests => testCount() ;
my $output;
foreach my $testSet (@testArray) {
$output = new FAKE_ENV( $testSet->{agent},
$testSet->{address} || '69.42.78.32')
$output = FAKE_ENV->new( $testSet->{agent},
$testSet->{address} || '69.42.78.32')
->requestNotViewed();
is($output, $testSet->{output}, $testSet->{comment});
}