diff tests/test_fetch_command.py @ 851:9ce00cb1d676

Merge alternate tunnel schemes.
author Augie Fackler <durin42@gmail.com>
date Sat, 25 Feb 2012 14:51:22 -0600
parents 312b37bc5e20
children 04729f3a3d17
line wrap: on
line diff
--- a/tests/test_fetch_command.py
+++ b/tests/test_fetch_command.py
@@ -165,7 +165,7 @@ class TestBasicRepoLayout(test_util.Test
 
         commands.clone(ui, repo_url + subdir, wc_path)
         commands.clone(ui, repo_url + quoted_subdir, wc2_path)
-        repo  = hg.repository(ui, wc_path)
+        repo = hg.repository(ui, wc_path)
         repo2 = hg.repository(ui, wc2_path)
 
         self.assertEqual(repo['tip'].extra()['convert_revision'],
@@ -224,7 +224,7 @@ class TestStupidPull(test_util.TestBase)
                          '1a6c3f30911d57abb67c257ec0df3e7bc44786f7')
 
 def suite():
-    all = [unittest.TestLoader().loadTestsFromTestCase(TestBasicRepoLayout),
+    all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestBasicRepoLayout),
            unittest.TestLoader().loadTestsFromTestCase(TestStupidPull),
           ]
-    return unittest.TestSuite(all)
+    return unittest.TestSuite(all_tests)