diff --git a/stabbertests/test_connect.c b/stabbertests/test_connect.c
index ba88d50a..554cc511 100644
--- a/stabbertests/test_connect.c
+++ b/stabbertests/test_connect.c
@@ -27,7 +27,7 @@ connect_jid_requests_roster(void **state)
prof_input("/connect stabber@localhost port 5230");
prof_input("password");
- assert_true(stbbr_verify(
+ assert_true(stbbr_received(
""
));
}
@@ -47,7 +47,7 @@ connect_jid_sends_presence_after_receiving_roster(void **state)
prof_input("/connect stabber@localhost port 5230");
prof_input("password");
- assert_true(stbbr_verify(
+ assert_true(stbbr_received(
""
""
""
@@ -60,7 +60,7 @@ connect_jid_requests_bookmarks(void **state)
prof_input("/connect stabber@localhost port 5230");
prof_input("password");
- assert_true(stbbr_verify(
+ assert_true(stbbr_received(
""
""
""
@@ -138,7 +138,7 @@ sends_rooms_iq(void **state)
prof_input("password");
prof_input("/rooms");
- assert_true(stbbr_verify_last(
+ assert_true(stbbr_last_received(
""
""
""
@@ -159,7 +159,7 @@ multiple_pings(void **state)
prof_input("password");
prof_input("/ping");
- assert_true(stbbr_verify(
+ assert_true(stbbr_received(
""
""
""
@@ -167,7 +167,7 @@ multiple_pings(void **state)
assert_true(prof_output("Ping response from server"));
prof_input("/ping");
- assert_true(stbbr_verify(
+ assert_true(stbbr_received(
""
""
""
@@ -189,7 +189,7 @@ responds_to_ping(void **state)
""
);
- assert_true(stbbr_verify(
+ assert_true(stbbr_received(
""
));
}