Mercurial > public > mercurial-scm > hg
diff tests/test-parseindex2.py @ 8117:2b30d8488819
remove unnecessary outer parenthesis in if-statements
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Wed, 22 Apr 2009 01:39:47 +0200 |
parents | 75fdc39b6172 |
children | 61c9bc3da402 |
line wrap: on
line diff
--- a/tests/test-parseindex2.py Wed Apr 22 09:11:46 2009 +0200 +++ b/tests/test-parseindex2.py Wed Apr 22 01:39:47 2009 +0200 @@ -102,10 +102,10 @@ py_res_2 = py_parseindex(data_non_inlined, False) c_res_2 = parsers.parse_index(data_non_inlined, False) - if (py_res_1 != c_res_1) : + if py_res_1 != c_res_1: print "Parse index result (with inlined data) differs!" - if (py_res_2 != c_res_2) : + if py_res_2 != c_res_2: print "Parse index result (no inlined data) differs!" print "done"