From b2359200bbbc1d113bbb3b87f8bce798a99243f4 Mon Sep 17 00:00:00 2001 From: Nico von Geyso Date: Mon, 19 Nov 2012 23:11:18 +0100 Subject: [PATCH] revlog iteration will start with last commit, not the first one --- test/test_revwalk.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/test_revwalk.py b/test/test_revwalk.py index f7e56c6..4fb1fd9 100644 --- a/test/test_revwalk.py +++ b/test/test_revwalk.py @@ -44,13 +44,13 @@ log = [ 'acecd5ea2924a4b900e7e149496e1f4b57976e51'] REVLOGS = [ - ('J. David Ibañez', 'commit (initial): First commit'), - ('J. David Ibañez', 'checkout: moving from master to i18n'), - ('J. David Ibañez', 'commit: Say hello in Spanish'), - ('J. David Ibañez', 'commit: Say hello in French'), - ('J. David Ibañez', 'checkout: moving from i18n to master'), + ('J. David Ibañez', 'merge i18n: Merge made by recursive.'), ('J. David Ibañez', 'commit: Add .gitignore file'), - ('J. David Ibañez', 'merge i18n: Merge made by recursive.') + ('J. David Ibañez', 'checkout: moving from i18n to master'), + ('J. David Ibañez', 'commit: Say hello in French'), + ('J. David Ibañez', 'commit: Say hello in Spanish'), + ('J. David Ibañez', 'checkout: moving from master to i18n'), + ('J. David Ibañez', 'commit (initial): First commit') ]