diff -r 3633403888ae -r 96f2f50d923f tests/test-bdiff.py --- a/tests/test-bdiff.py Tue Nov 15 21:56:49 2016 +0100 +++ b/tests/test-bdiff.py Tue Nov 15 21:56:49 2016 +0100 @@ -88,7 +88,7 @@ showdiff('a\n', 'a\n' * 3) print("Diff 1 to 5 lines - preference for appending:") showdiff('a\n', 'a\n' * 5) -print("Diff 3 to 1 lines - preference for balanced recursion:") +print("Diff 3 to 1 lines - preference for removing trailing lines:") showdiff('a\n' * 3, 'a\n') -print("Diff 5 to 1 lines - preference for balanced recursion:") +print("Diff 5 to 1 lines - preference for removing trailing lines:") showdiff('a\n' * 5, 'a\n')