Mercurial > public > mercurial-scm > hg
comparison tests/test-filecache.py @ 28802:b16eacf5347c
test-filecache: sort import lines
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Tue, 05 Apr 2016 23:15:49 +0900 |
parents | a08c90d622eb |
children | 76c091f9711e |
comparison
equal
deleted
inserted
replaced
28801:441491aba8c3 | 28802:b16eacf5347c |
---|---|
5 | 5 |
6 if subprocess.call(['python', '%s/hghave' % os.environ['TESTDIR'], | 6 if subprocess.call(['python', '%s/hghave' % os.environ['TESTDIR'], |
7 'cacheable']): | 7 'cacheable']): |
8 sys.exit(80) | 8 sys.exit(80) |
9 | 9 |
10 from mercurial import util, scmutil, extensions, hg, ui | 10 from mercurial import ( |
11 extensions, | |
12 hg, | |
13 scmutil, | |
14 ui, | |
15 util, | |
16 ) | |
11 | 17 |
12 filecache = scmutil.filecache | 18 filecache = scmutil.filecache |
13 | 19 |
14 class fakerepo(object): | 20 class fakerepo(object): |
15 def __init__(self): | 21 def __init__(self): |