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

Fix time_log_history

We want to display N changesets but `tip~%d:` can display much more changesets
than N.
parent 3c85f4040abd
No related branches found
No related tags found
No related merge requests found
......@@ -136,7 +136,7 @@
timeout = 300
def time_log_history(self, repo, n):
self._execute("log", "-r", "tip~%d::" % n)
self._execute("log", "-r", "-%d:" % n)
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