Commit 376fc38f authored by Michal Čihař's avatar Michal Čihař

Mention cloning test mercurial repository as well

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent f25518ce
......@@ -73,7 +73,7 @@ class RepoTestCase(TestCase):
# Clone repo for testing
if not os.path.exists(self.git_base_repo_path):
print(
'Cloning test repository to {0}...'.format(
'Cloning Git test repository to {0}...'.format(
self.git_base_repo_path
)
)
......@@ -92,6 +92,11 @@ class RepoTestCase(TestCase):
# Clone repo for testing
if not os.path.exists(self.hg_base_repo_path):
print(
'Cloning Mercurial test repository to {0}...'.format(
self.hg_base_repo_path
)
)
HgRepository.clone(
HG_URL,
self.hg_base_repo_path,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment