diff options
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/plugins/irc/test-irc-message.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/plugins/irc/test-irc-message.cpp b/tests/unit/plugins/irc/test-irc-message.cpp index 605a7a19d..8e841bb12 100644 --- a/tests/unit/plugins/irc/test-irc-message.cpp +++ b/tests/unit/plugins/irc/test-irc-message.cpp @@ -775,8 +775,8 @@ TEST(IrcMessage, ParseToHashtable) (const char *)hashtable_get (hashtable, "tags")); POINTERS_EQUAL(NULL, (const char *)hashtable_get (hashtable, "tag_time")); - STRCMP_EQUAL(NULL, - (const char *)hashtable_get (hashtable, "tag_tag2")); + POINTERS_EQUAL(NULL, + (const char *)hashtable_get (hashtable, "tag_tag2")); STRCMP_EQUAL("PING :arguments here", (const char *)hashtable_get (hashtable, "message_without_tags")); STRCMP_EQUAL("", |