Mercurial > hgsubversion
diff tests/test_pull_fallback.py @ 1069:f6c9394032cb
test_pull_fallback: use stupid mode metaclass
| author | Dan Villiom Podlaski Christiansen <danchr@gmail.com> |
|---|---|
| date | Fri, 09 Aug 2013 23:45:58 +0200 |
| parents | d741f536f23a |
| children | 4f1461428334 |
line wrap: on
line diff
--- a/tests/test_pull_fallback.py +++ b/tests/test_pull_fallback.py @@ -31,8 +31,9 @@ class TestPullFallback(test_util.TestBas 'stupid.fetch_branchrev': 1, } - repo, repo_path = self._loadupdate( - 'single_rev.svndump', stupid=True) + self.stupid = True + repo, repo_path = self._loadupdate('single_rev.svndump') + self.stupid = False # Passing stupid=True doesn't seem to be working - force it repo.ui.setconfig('hgsubversion', 'stupid', "true")
