diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-10-17 20:24:18 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-10-17 21:28:31 +0200 |
commit | cde0d5f7a5ad4ad4883e5046e481c73f88e79381 (patch) | |
tree | 25c8a164d7ef18b02ba48e0d7e40534c155e6f50 /tests/unit | |
parent | ba5b744397eb73cd0818f97c2fd084f271b6eb46 (diff) | |
download | weechat-cde0d5f7a5ad4ad4883e5046e481c73f88e79381.zip |
irc: do not display "*" when received as nick in command 900
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/plugins/irc/test-irc-protocol.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unit/plugins/irc/test-irc-protocol.cpp b/tests/unit/plugins/irc/test-irc-protocol.cpp index 963482ce2..9daa1d110 100644 --- a/tests/unit/plugins/irc/test-irc-protocol.cpp +++ b/tests/unit/plugins/irc/test-irc-protocol.cpp @@ -4014,6 +4014,8 @@ TEST(IrcProtocolWithServer, 900) RECV(":server 900 alice alice!user@host alice " ":You are now logged in as mynick"); CHECK_SRV("-- You are now logged in as mynick (alice!user@host)"); + RECV(":server 900 * * alice :You are now logged in as mynick"); + CHECK_SRV("-- You are now logged in as mynick"); } /* |