From a802503c8e885d5be6811d98f8f57948c69159ee Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 3 Oct 2011 02:30:10 -0500 Subject: don't pass around the empty hashref unless necessary --- t/route.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't/route.t') diff --git a/t/route.t b/t/route.t index c4507eb..722121b 100644 --- a/t/route.t +++ b/t/route.t @@ -64,7 +64,7 @@ test_psgi my $self = shift; my ($r, $template, $params) = @_; $params->{my_thing} = 'BAR'; - return $self->$orig(@_); + return $self->$orig($r, $template, $params); }; } -- cgit v1.2.3-54-g00ecf