# HG changeset patch # User Dan Villiom Podlaski Christiansen # Date 1376084758 -7200 # Node ID f6c9394032cb79188eb20928bada1b2e9691320d # Parent cd35f6739669d411aeed651312fbe0701da67ba7 test_pull_fallback: use stupid mode metaclass diff --git a/tests/test_pull_fallback.py b/tests/test_pull_fallback.py --- 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")