From f2f6afb59cd3feee8d2789871cc5cd62f9f8e942 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 9 Mar 2024 09:00:58 +0100 Subject: [PATCH] tests/relay/irc: remove unused calls to record functions --- tests/unit/plugins/relay/irc/test-relay-irc.cpp | 9 --------- 1 file changed, 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,