From 8adae35947eb213df1a60612d49b85bd7281ba10 Mon Sep 17 00:00:00 2001 From: David Delikat Date: Mon, 23 Feb 2009 04:51:45 +0000 Subject: [PATCH] fixed postfix object notation --- t/Session/CheckClient.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/Session/CheckClient.t b/t/Session/CheckClient.t index e75598a97..6071bbabc 100644 --- a/t/Session/CheckClient.t +++ b/t/Session/CheckClient.t @@ -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}); }