From b69c578e3a1ebaf9ddc4800a36a7a869eaca9667 Mon Sep 17 00:00:00 2001 From: jonasbn Date: Sun, 15 Oct 2017 12:29:18 +0200 Subject: [PATCH] Added minor correction (missing comma) --- lib/Test/Timer/TimeoutException.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Test/Timer/TimeoutException.pm b/lib/Test/Timer/TimeoutException.pm index 74af402..d4fb7e9 100644 --- a/lib/Test/Timer/TimeoutException.pm +++ b/lib/Test/Timer/TimeoutException.pm @@ -15,7 +15,7 @@ sub new { local $Error::Depth = $Error::Depth + 1; - $self = $self->SUPER::new( -text => $time -value => $time ); + $self = $self->SUPER::new( -text => $time, -value => $time ); return $self; }