diff tests/run.py @ 713:69c0e7c4faf9

clone: call the wrapped function (fixes #181) This is a regression that was brought to my attention in #mercurial: hgsubversion breaks the --update flag. The cause is that we call hg.clone() directly rather than the original wrapped function. A comment in 'wrapper.py' noted that the call to hg.clone() should be kept in sync with 'mercurial/commands.py'. That didn't happen. The original reason for calling hg.clone() directly was that we needed its return values. Another wrapper is added (and cleared) within clone() to get them anyway.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Wed, 29 Sep 2010 18:04:26 +0200
parents e9306b23d323
children e830b592917b
line wrap: on
line diff
--- a/tests/run.py
+++ b/tests/run.py
@@ -27,6 +27,7 @@ def tests():
     import test_tags
     import test_template_keywords
     import test_utility_commands
+    import test_unaffected_core
     import test_urls
 
     sys.path.append(os.path.dirname(__file__))