Skip to content

Commit

Permalink
$_[0] is $self, not the revision, in store_tested_revision
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmv committed Dec 16, 2009
1 parent c053949 commit 78fbe86
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/Test/Chimps/Smoker/Source.pm
Expand Up @@ -184,7 +184,10 @@ sub checkout { return 1 }
sub clean { return 1 }

sub next { return () }
sub store_tested_revision { return shift }
sub store_tested_revision {
my $self = shift;
return @_;
}

sub run_cmd {
my $self = shift;
Expand Down

0 comments on commit 78fbe86

Please sign in to comment.