Mercurial > hgsubversion
diff tests/test_svnwrap.py @ 642:c2d606a1dc6f
tests: get rid of DOS line endings.
author | Dan Villiom Podlaski Christiansen <danchr@gmail.com> |
---|---|
date | Wed, 14 Jul 2010 15:39:14 +0200 |
parents | a42fb4f1716a |
children | d2ef7220a079 |
line wrap: on
line diff
--- a/tests/test_svnwrap.py +++ b/tests/test_svnwrap.py @@ -12,10 +12,10 @@ from hgsubversion import svnwrap import os import stat def force_rm(path): - os.chmod( - path, - os.stat(path).st_mode | stat.S_IWUSR | stat.S_IWGRP | stat.S_IWOTH - ) + os.chmod( + path, + os.stat(path).st_mode | stat.S_IWUSR | stat.S_IWGRP | stat.S_IWOTH + ) os.remove(path) class TestBasicRepoLayout(unittest.TestCase):