diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-09 09:00:58 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-12 20:37:48 +0100 |
commit | f2f6afb59cd3feee8d2789871cc5cd62f9f8e942 (patch) | |
tree | 655a42abe3f0ef73d4503aebbd238d8fbedec035 /tests | |
parent | 3045322822a7dcde0ade2377373a319f87e9f491 (diff) | |
download | weechat-f2f6afb59cd3feee8d2789871cc5cd62f9f8e942.zip |
tests/relay/irc: remove unused calls to record functions
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/plugins/relay/irc/test-relay-irc.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/unit/plugins/relay/irc/test-relay-irc.cpp b/tests/unit/plugins/relay/irc/test-relay-irc.cpp index 62353ac79..7ac59ab39 100644 --- a/tests/unit/plugins/relay/irc/test-relay-irc.cpp +++ b/tests/unit/plugins/relay/irc/test-relay-irc.cpp @@ -22,7 +22,6 @@ #include "CppUTest/TestHarness.h" #include "tests/tests.h" -#include "tests/tests-record.h" extern "C" { @@ -138,26 +137,18 @@ TEST_GROUP(RelayIrcWithClient) void test_client_recv (const char *data) { - record_start (); - arraylist_clear (sent_messages_client); arraylist_clear (sent_messages_irc); relay_irc_recv (ptr_relay_client, data); - - record_stop (); } void test_client_send (const char *data) { - record_start (); - arraylist_clear (sent_messages_client); arraylist_clear (sent_messages_irc); relay_irc_sendf (ptr_relay_client, "%s", data); - - record_stop (); } char **test_build_error (const char *msg1, |