[Bps-public-commit] Test-Chimps-Client branch, master, updated. 78fbe860b1f7feb655551fda53614ea58ae8d172
Alex M Vandiver
alexmv at bestpractical.com
Wed Dec 16 18:26:05 EST 2009
The branch, master has been updated
via 78fbe860b1f7feb655551fda53614ea58ae8d172 (commit)
from c053949a141387b45e86a9c2c3de3d8df1070562 (commit)
Summary of changes:
lib/Test/Chimps/Smoker/Source.pm | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit 78fbe860b1f7feb655551fda53614ea58ae8d172
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Wed Dec 16 18:26:01 2009 -0500
$_[0] is $self, not the revision, in store_tested_revision
diff --git a/lib/Test/Chimps/Smoker/Source.pm b/lib/Test/Chimps/Smoker/Source.pm
index a3cdcc4..beaf5f4 100644
--- a/lib/Test/Chimps/Smoker/Source.pm
+++ b/lib/Test/Chimps/Smoker/Source.pm
@@ -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;
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list