[Buildbot-commits] buildbot/buildbot/test test_vc.py,1.52,1.53
Brian Warner
warner at users.sourceforge.net
Fri May 19 06:20:03 UTC 2006
Update of /cvsroot/buildbot/buildbot/buildbot/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv27413/buildbot/test
Modified Files:
test_vc.py
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-535
Creator: Brian Warner <warner at lothar.com>
use 'hg add' instead of deprecated 'hg addremove'
* buildbot/test/test_vc.py (MercurialSupport.vc_create): 'hg
addremove' has been deprecated in recent versions of mercurial, so
use 'hg add' instead
Index: test_vc.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/test/test_vc.py,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -d -r1.52 -r1.53
--- test_vc.py 7 May 2006 00:20:22 -0000 1.52
+++ test_vc.py 19 May 2006 06:20:01 -0000 1.53
@@ -1856,7 +1856,7 @@
self.populate(tmp)
w = self.dovc(tmp, "init")
yield w; w.getResult()
- w = self.dovc(tmp, "addremove")
+ w = self.dovc(tmp, "add")
yield w; w.getResult()
w = self.dovc(tmp, "commit -m initial_import")
yield w; w.getResult()
More information about the Commits
mailing list