Mercurial > hg
changeset 28148:e8c2a60864fc
automv: remove test for 'developer mode'
The tests no longer use this mode, the test is entirely redundant.
author | Martijn Pieters <mjpieters@fb.com> |
---|---|
date | Mon, 15 Feb 2016 16:51:31 +0000 |
parents | 26b61576af0e |
children | d356d5250ab2 |
files | hgext/automv.py |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/automv.py Mon Feb 15 16:44:30 2016 +0000 +++ b/hgext/automv.py Mon Feb 15 16:51:31 2016 +0000 @@ -41,9 +41,7 @@ renames = _findrenames(repo, match, added, removed, threshold) _markchanges(repo, renames) - # developer config: automv.testmode - if not ui.configbool('automv', 'testmode'): - return orig(ui, repo, *pats, **opts) + return orig(ui, repo, *pats, **opts) def _interestingfiles(repo, matcher): stat = repo.status(match=matcher)