aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-03-12 19:35:51 +0000
committerWilmer van der Gaast <wilmer@gaast.net>2010-03-12 19:35:51 +0000
commitdde9d5710cd6392592c1417032933f0ba4299d9c (patch)
tree21478dbe2d958649febc03bed0b1c187dd4633ce /tests
parentbe609ff2b0ca885612c0e6d81f82c4f26ed4f58d (diff)
Fixed jabber_util unittest. It passes, yet something still seems to be
broken. :-(
Diffstat (limited to 'tests')
-rw-r--r--tests/check_jabber_util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/check_jabber_util.c b/tests/check_jabber_util.c
index 4728c5ee..d105f52a 100644
--- a/tests/check_jabber_util.c
+++ b/tests/check_jabber_util.c
@@ -13,12 +13,12 @@ static void check_buddy_add(int l)
struct jabber_buddy *budw1, *budw2, *budw3, *budn, *bud;
budw1 = jabber_buddy_add( ic, "wilmer@gaast.net/BitlBee" );
- budw1->last_act = time( NULL ) - 100;
+ budw1->last_msg = time( NULL ) - 100;
budw2 = jabber_buddy_add( ic, "WILMER@gaast.net/Telepathy" );
budw2->priority = 2;
- budw2->last_act = time( NULL );
+ budw2->last_msg = time( NULL );
budw3 = jabber_buddy_add( ic, "wilmer@GAAST.NET/bitlbee" );
- budw3->last_act = time( NULL ) - 200;
+ budw3->last_msg = time( NULL ) - 200;
budw3->priority = 4;
/* TODO(wilmer): Shouldn't this just return budw3? */
fail_if( jabber_buddy_add( ic, "wilmer@gaast.net/Telepathy" ) != NULL );