# HG changeset patch # User Augie Fackler # Date 1277691276 18000 # Node ID 96552e855d7e1143bf88d143e47f1d16ce1e68e0 # Parent cc25b4c654dc22cffd4212df890f67bebb88341b tests: fix misnamed test caught while hunting unrelated bugs diff --git a/tests/test_push_command.py b/tests/test_push_command.py --- a/tests/test_push_command.py +++ b/tests/test_push_command.py @@ -266,7 +266,7 @@ class PushTests(test_util.TestBase): self.assertEqual(tip['adding_file'].data(), 'foo') self.assertEqual(tip.branch(), 'the_branch') - def push_to_non_tip(self): + def test_push_to_non_tip(self): self.test_push_to_branch(push=False) wc2path = self.wc_path + '_clone' u = self.repo.ui @@ -289,7 +289,6 @@ class PushTests(test_util.TestBase): from hgsubversion import svncommands svncommands.rebuildmeta(u, self.repo, - os.path.dirname(self.repo.path), args=[test_util.fileurl(self.repo_path)])