# HG changeset patch # User Pierre-Yves David # Date 2013-10-02 09:16:03 # Node ID 21de61bc2ab59ec6bb1416ed9441b638db6d2c8c # Parent 52ed85d9ac265e27ef363fd7e03042194e2f9841 test: make test-propertycache.py python2.4 compatible The subprocess module have not `check_call` method in python2.4. Fall back to calling `check` with return code verification. diff --git a/tests/test-propertycache.py b/tests/test-propertycache.py --- a/tests/test-propertycache.py +++ b/tests/test-propertycache.py @@ -42,7 +42,7 @@ mercurial.localrepo.localrepository.test # create an empty repo. and instanciate it. It is important to run # those test on the real object to detect regression. repopath = os.path.join(os.environ['TESTTMP'], 'repo') -subprocess.check_call(['hg', 'init', repopath]) +assert subprocess.call(['hg', 'init', repopath]) == 0 ui = uimod.ui() repo = mercurial.hg.repository(ui, path=repopath).unfiltered()