summaryrefslogtreecommitdiffstats
path: root/t/route.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-10-03 02:30:10 -0500
committerJesse Luehrs <doy@tozt.net>2011-10-03 02:30:10 -0500
commita802503c8e885d5be6811d98f8f57948c69159ee (patch)
tree149cb11510b7aa74e6cda4153428349ea4eb68c2 /t/route.t
parent9483b054d6c06aa4edf84ed938d81fc3cd40b060 (diff)
downloadox-view-tt-a802503c8e885d5be6811d98f8f57948c69159ee.tar.gz
ox-view-tt-a802503c8e885d5be6811d98f8f57948c69159ee.zip
don't pass around the empty hashref unless necessary
Diffstat (limited to 't/route.t')
-rw-r--r--t/route.t2
1 files changed, 1 insertions, 1 deletions
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);
};
}