From 3a56bcd8744192de75e69b595056dfe0a43680a2 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 31 Jul 2009 04:17:05 -0400 Subject: Fixed comment.cmp_attr unittest because "o" > "a" so cmp("o", "a") == 1. --- libbe/comment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libbe/comment.py b/libbe/comment.py index c5bec43..b2fc556 100644 --- a/libbe/comment.py +++ b/libbe/comment.py @@ -694,9 +694,9 @@ def cmp_attr(comment_1, comment_2, attr, invert=False): >>> commentB = Comment() >>> commentA.author = "John Doe" >>> commentB.author = "Jane Doe" - >>> cmp_attr(commentA, commentB, attr) < 0 + >>> cmp_attr(commentA, commentB, attr) > 0 True - >>> cmp_attr(commentA, commentB, attr, invert=True) > 0 + >>> cmp_attr(commentA, commentB, attr, invert=True) < 0 True >>> commentB.author = "John Doe" >>> cmp_attr(commentA, commentB, attr) == 0 -- cgit