Skip to content
Snippets Groups Projects
Commit 4e9eac2e30b2 authored by Boris Feld's avatar Boris Feld
Browse files

Moves time_archive to kwargs

parent 96fde01c8636
No related branches found
No related tags found
No related merge requests found
......@@ -165,8 +165,9 @@
timeout = 300
def time_log_history(self, repo, n):
self.hg("log", "-r", "-%d:" % n)
@params_as_kwargs
def time_log_history(self, repo, changesets, **kwargs):
self.hg("log", "-r", "-%d:" % changesets)
class UpdateTimeTestSuite(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