diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-07-12 19:13:40 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-07-12 19:13:40 +0200 |
commit | 7c805aa699a70800049e1e9760b5bdde84e62be3 (patch) | |
tree | 77a29204433d9fc004b7e88c80262fcbfd23287e /tests/unit/plugins/irc/test-irc-protocol.cpp | |
parent | 9237852b262226fe74fe893909c6b30a699d3779 (diff) | |
download | weechat-7c805aa699a70800049e1e9760b5bdde84e62be3.zip |
irc: remove default CTCP replies FINGER and USERINFO (issue #1974)
Diffstat (limited to 'tests/unit/plugins/irc/test-irc-protocol.cpp')
-rw-r--r-- | tests/unit/plugins/irc/test-irc-protocol.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/plugins/irc/test-irc-protocol.cpp b/tests/unit/plugins/irc/test-irc-protocol.cpp index a1c7ab495..d993ceb7e 100644 --- a/tests/unit/plugins/irc/test-irc-protocol.cpp +++ b/tests/unit/plugins/irc/test-irc-protocol.cpp @@ -2954,7 +2954,7 @@ TEST(IrcProtocolWithServer, privmsg) CHECK_SRV("--", "CTCP requested by alice: CLIENTINFO", "irc_privmsg,irc_ctcp,host_user@host,log1"); CHECK_SRV("--", "CTCP reply to alice: CLIENTINFO ACTION CLIENTINFO " - "DCC FINGER PING SOURCE TIME USERINFO VERSION", + "DCC PING SOURCE TIME VERSION", "irc_privmsg,irc_ctcp,irc_ctcp_reply,self_msg,notify_none," "no_highlight,log1"); } @@ -2971,7 +2971,7 @@ TEST(IrcProtocolWithServer, privmsg) CHECK_SRV("--", "CTCP requested by alice: CLIENTINFO", "irc_privmsg,irc_ctcp,host_user@host,log1"); CHECK_SRV("--", "CTCP reply to alice: CLIENTINFO ACTION CLIENTINFO " - "DCC FINGER PING SOURCE TIME USERINFO VERSION", + "DCC PING SOURCE TIME VERSION", "irc_privmsg,irc_ctcp,irc_ctcp_reply,self_msg,notify_none," "no_highlight,log1"); } |