##// END OF EJS Templates
test: make test-propertycache.py python2.4 compatible...
Pierre-Yves David -
r19878:21de61bc stable
parent child Browse files
Show More
@@ -42,7 +42,7 b' mercurial.localrepo.localrepository.test'
42 42 # create an empty repo. and instanciate it. It is important to run
43 43 # those test on the real object to detect regression.
44 44 repopath = os.path.join(os.environ['TESTTMP'], 'repo')
45 subprocess.check_call(['hg', 'init', repopath])
45 assert subprocess.call(['hg', 'init', repopath]) == 0
46 46 ui = uimod.ui()
47 47 repo = mercurial.hg.repository(ui, path=repopath).unfiltered()
48 48
General Comments 0
You need to be logged in to leave comments. Login now