Skip to content
Snippets Groups Projects
Commit e575c25173ca authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

time_archive: use long option name

This make for clearer command line.
parent b2f210123d79
No related branches found
No related tags found
No related merge requests found
......@@ -141,7 +141,10 @@
def time_archive(self, repo, archive_type, *args, **kwargs):
# asv share the same temporary directory for all combinations
# so use an unique output name
self.hg('archive', '-t', archive_type, '-r', 'default', self.output)
self.hg('archive',
'--type', archive_type,
'--rev', 'default',
self.output)
class LogTimeTestSuite(BaseNChangesetsTestSuite):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment