# HG changeset patch # User Augie Fackler # Date 1229037583 21600 # Node ID e33c7a4bcebb370bdf47da4f0c67fbb01eb7be2e # Parent 22248b34b15a59a7c93315df10b3b79d73b9d609 tests: Fix a missing pass of stupid=True. diff --git a/tests/test_fetch_command.py b/tests/test_fetch_command.py --- a/tests/test_fetch_command.py +++ b/tests/test_fetch_command.py @@ -8,9 +8,10 @@ import test_util class TestBasicRepoLayout(test_util.TestBase): - def _load_fixture_and_fetch(self, fixture_name, subdir=''): + def _load_fixture_and_fetch(self, fixture_name, subdir='', stupid=False): return test_util.load_fixture_and_fetch(fixture_name, self.repo_path, - self.wc_path, subdir=subdir) + self.wc_path, subdir=subdir, + stupid=stupid) def test_fresh_fetch_single_rev(self): repo = self._load_fixture_and_fetch('single_rev.svndump') @@ -60,7 +61,8 @@ class TestBasicRepoLayout(test_util.Test def test_many_special_cases_diff(self): - repo = self._load_fixture_and_fetch('many_special_cases.svndump') + repo = self._load_fixture_and_fetch('many_special_cases.svndump', + stupid=True) # TODO there must be a better way than repo[0] for this check self._many_special_cases_checks(repo)