Fix Runtime.t and update it in all tools.

This commit is contained in:
Daniel Nichter
2013-02-27 19:23:08 -07:00
parent 2c4bd60fb7
commit 55049b8759
7 changed files with 55 additions and 40 deletions

View File

@@ -27,7 +27,7 @@ use constant PTDEBUG => $ENV{PTDEBUG} || 0;
sub new {
my ( $class, %args ) = @_;
my @required_args = qw(run_time now);
my @required_args = qw(now);
foreach my $arg ( @required_args ) {
die "I need a $arg argument" unless exists $args{$arg};
}