# HG changeset patch # User Dan Villiom Podlaski Christiansen # Date 1290912411 -3600 # Node ID 13a2137d3c15228bb18dc6049dcf204eef3a6ca9 # Parent 6c244d3ceaf77aae9670f01ca12419408235814a test_fetch_mappings: actually test stupid mode in test_author_map_no_author() diff --git a/tests/test_fetch_mappings.py b/tests/test_fetch_mappings.py --- a/tests/test_fetch_mappings.py +++ b/tests/test_fetch_mappings.py @@ -66,7 +66,7 @@ class MapTests(test_util.TestBase): self.test_author_map_closing_author(True) def test_author_map_no_author(self, stupid=False): - self._load_fixture_and_fetch('no-author.svndump') + self._load_fixture_and_fetch('no-author.svndump', stupid=stupid) users = set(self.repo[r].user() for r in self.repo) expected_users = ['(no author)@%s' % self.repo.svnmeta().uuid] self.assertEqual(sorted(users), expected_users)