Mercurial > hgsubversion
comparison tests/test_fetch_symlinks.py @ 832:e9af7eba88db
globally: clean up whitespace around operators and commas to conform with PEP8
Mostly autoformatted by Eclipse. A few manual corrections were
performed where Eclipse's autoformatter did something non-idiomatic.
author | Yonggang Luo <luoyonggang@gmail.com> |
---|---|
date | Wed, 12 Oct 2011 15:35:25 +0800 |
parents | b3128fec5d54 |
children | 312b37bc5e20 |
comparison
equal
deleted
inserted
replaced
831:be5bbb2f2d68 | 832:e9af7eba88db |
---|---|
37 6: { | 37 6: { |
38 'linka3': 'a', | 38 'linka3': 'a', |
39 'linka4': 'link to this', | 39 'linka4': 'link to this', |
40 }, | 40 }, |
41 } | 41 } |
42 | 42 |
43 for rev in repo: | 43 for rev in repo: |
44 ctx = repo[rev] | 44 ctx = repo[rev] |
45 for f in ctx.manifest(): | 45 for f in ctx.manifest(): |
46 self.assertEqual(f in links[rev], 'l' in ctx[f].flags()) | 46 self.assertEqual(f in links[rev], 'l' in ctx[f].flags()) |
47 if f in links[rev]: | 47 if f in links[rev]: |