summaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/plugins/relay/irc/test-relay-irc.cpp9
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,