[Buildbot-commits] buildbot/buildbot/test test_run.py,1.54,1.55
Brian Warner
warner at users.sourceforge.net
Sat Mar 22 22:14:23 UTC 2008
Update of /cvsroot/buildbot/buildbot/buildbot/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv20469/buildbot/test
Modified Files:
test_run.py
Log Message:
[project @ test_run.py: pyflakes caught an old cut-and-paste error.. fix it]
Original author: warner at lothar.com
Date: 2008-03-22 22:00:20+00:00
Index: test_run.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/test/test_run.py,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -d -r1.54 -r1.55
--- test_run.py 21 Mar 2008 01:32:00 -0000 1.54
+++ test_run.py 22 Mar 2008 22:14:21 -0000 1.55
@@ -370,11 +370,11 @@
def testBuild2(self):
# this next sequence is timing-dependent
d = self.submitBuild()
- d.addCallback(self._testBuild1_1)
+ d.addCallback(self._testBuild2_1)
return d
testBuild2.timeout = 30
- def _testBuild1_1(self, bc):
+ def _testBuild2_1(self, bc):
bs = bc.getStatus()
# shutdown the slave while it's running the first step
reactor.callLater(0.5, self.shutdownAllSlaves)
More information about the Commits
mailing list