aboutsummaryrefslogtreecommitdiff
path: root/t/lib
diff options
context:
space:
mode:
Diffstat (limited to 't/lib')
-rw-r--r--t/lib/WebCoso/Pipeline/Test.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/lib/WebCoso/Pipeline/Test.pm b/t/lib/WebCoso/Pipeline/Test.pm
index 6920f46..2d13d69 100644
--- a/t/lib/WebCoso/Pipeline/Test.pm
+++ b/t/lib/WebCoso/Pipeline/Test.pm
@@ -8,11 +8,11 @@ __PACKAGE__->set_steps(qw(Step1 Step2));
my @calls;
sub process {
- my ($class,$resource)=@_;
+ my ($class,$resource,$stage)=@_;
- my $call={ resource => $resource };
+ my $call={ resource => $resource, stage => $stage };
- my $ret=$class->SUPER::process($resource);
+ my $ret=$class->SUPER::process($resource,$stage);
push @calls, $call;