summaryrefslogtreecommitdiff
path: root/tests/unit/plugins
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2023-05-21 22:14:55 +0200
committerSébastien Helleu <flashcode@flashtux.org>2023-05-23 21:49:53 +0200
commit3cb5f25681e9ecbfd21f9241f1f3ccd23efba3e7 (patch)
tree137cb9542385e3b031ea1c770ca0a0fd44f34022 /tests/unit/plugins
parentf3e1da894b1e1c3a6ec729613bfa697f1a497ecb (diff)
downloadweechat-3cb5f25681e9ecbfd21f9241f1f3ccd23efba3e7.zip
irc: add missing tag "log3" in notify messages
Diffstat (limited to 'tests/unit/plugins')
-rw-r--r--tests/unit/plugins/irc/test-irc-protocol.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/unit/plugins/irc/test-irc-protocol.cpp b/tests/unit/plugins/irc/test-irc-protocol.cpp
index 2112960d1..1b6eafdd8 100644
--- a/tests/unit/plugins/irc/test-irc-protocol.cpp
+++ b/tests/unit/plugins/irc/test-irc-protocol.cpp
@@ -5161,18 +5161,18 @@ TEST(IrcProtocolWithServer, 730)
run_cmd_quiet ("/notify add nick1 " IRC_FAKE_SERVER);
RECV(":server 730 alice :nick1!user1@host1,nick2!user2@host2");
CHECK_SRV("--", "notify: nick1 (user1@host1) is connected",
- "irc_notify,irc_notify_join,nick_nick1,notify_message");
+ "irc_notify,irc_notify_join,nick_nick1,notify_message,log3");
RECV(":server 731 alice :nick1!user1@host1,nick2!user2@host2");
CHECK_SRV("--", "notify: nick1 (user1@host1) has quit",
- "irc_notify,irc_notify_quit,nick_nick1,notify_message");
+ "irc_notify,irc_notify_quit,nick_nick1,notify_message,log3");
/* with notify on nick1 and nick2 */
run_cmd_quiet ("/notify add nick2 " IRC_FAKE_SERVER);
RECV(":server 730 alice :nick1!user1@host1,nick2!user2@host2");
CHECK_SRV("--", "notify: nick1 (user1@host1) has connected",
- "irc_notify,irc_notify_join,nick_nick1,notify_message");
+ "irc_notify,irc_notify_join,nick_nick1,notify_message,log3");
CHECK_SRV("--", "notify: nick2 (user2@host2) is connected",
- "irc_notify,irc_notify_join,nick_nick2,notify_message");
+ "irc_notify,irc_notify_join,nick_nick2,notify_message,log3");
run_cmd_quiet ("/mute /notify del nick1 " IRC_FAKE_SERVER);
run_cmd_quiet ("/mute /notify del nick2 " IRC_FAKE_SERVER);