comparison tests/test_fetch_command.py @ 832:e9af7eba88db

globally: clean up whitespace around operators and commas to conform with PEP8 Mostly autoformatted by Eclipse. A few manual corrections were performed where Eclipse's autoformatter did something non-idiomatic.
author Yonggang Luo <luoyonggang@gmail.com>
date Wed, 12 Oct 2011 15:35:25 +0800
parents ae5968ffe6fe
children 312b37bc5e20
comparison
equal deleted inserted replaced
831:be5bbb2f2d68 832:e9af7eba88db
163 163
164 ui = self.ui(stupid=stupid) 164 ui = self.ui(stupid=stupid)
165 165
166 commands.clone(ui, repo_url + subdir, wc_path) 166 commands.clone(ui, repo_url + subdir, wc_path)
167 commands.clone(ui, repo_url + quoted_subdir, wc2_path) 167 commands.clone(ui, repo_url + quoted_subdir, wc2_path)
168 repo = hg.repository(ui, wc_path) 168 repo = hg.repository(ui, wc_path)
169 repo2 = hg.repository(ui, wc2_path) 169 repo2 = hg.repository(ui, wc2_path)
170 170
171 self.assertEqual(repo['tip'].extra()['convert_revision'], 171 self.assertEqual(repo['tip'].extra()['convert_revision'],
172 repo2['tip'].extra()['convert_revision']) 172 repo2['tip'].extra()['convert_revision'])
173 self.assertEqual(len(repo), len(repo2)) 173 self.assertEqual(len(repo), len(repo2))