Mercurial > public > mercurial-scm > hg
diff tests/test-doctest.py @ 34359:ee10eb665036
py3: replace str(None) with literal in convcmd.py
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Wed, 27 Sep 2017 19:08:23 +0900 |
parents | 8cbcee0b923d |
children | b76937fafe8a |
line wrap: on
line diff
--- a/tests/test-doctest.py Wed Sep 27 19:04:32 2017 +0900 +++ b/tests/test-doctest.py Wed Sep 27 19:08:23 2017 +0900 @@ -71,7 +71,7 @@ testmod('mercurial.url') testmod('mercurial.util', py3=False) # py3: multiple bytes/unicode issues testmod('mercurial.util', testtarget='platform') -testmod('hgext.convert.convcmd', py3=False) # py3: use of str() ? +testmod('hgext.convert.convcmd') testmod('hgext.convert.cvsps') testmod('hgext.convert.filemap') testmod('hgext.convert.p4')