automv: remove test for 'developer mode'
The tests no longer use this mode, the test is entirely redundant.
--- 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)