summaryrefslogtreecommitdiff
path: root/tests/unit/plugins
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2020-06-21 10:21:22 +0200
committerSébastien Helleu <flashcode@flashtux.org>2020-06-21 10:22:04 +0200
commit4a42cda3a5f5b02d8ba9afae129499c26250d334 (patch)
treeafa7b2b9988dcfe89321d5653fa4c0fccadd72ce /tests/unit/plugins
parent944661045252f38b08e1da32904317370b36cf74 (diff)
downloadweechat-4a42cda3a5f5b02d8ba9afae129499c26250d334.zip
irc: change default chantypes from "#&+!" to "#&"
The default chantypes was conflicting with irc_server_prefix_chars_default ("@+").
Diffstat (limited to 'tests/unit/plugins')
-rw-r--r--tests/unit/plugins/irc/test-irc-channel.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/unit/plugins/irc/test-irc-channel.cpp b/tests/unit/plugins/irc/test-irc-channel.cpp
index b78818987..d8a255e7d 100644
--- a/tests/unit/plugins/irc/test-irc-channel.cpp
+++ b/tests/unit/plugins/irc/test-irc-channel.cpp
@@ -67,10 +67,6 @@ TEST(IrcChannel, IsChannel)
LONGS_EQUAL(1, irc_channel_is_channel (NULL, "##abc"));
LONGS_EQUAL(1, irc_channel_is_channel (NULL, "&abc"));
LONGS_EQUAL(1, irc_channel_is_channel (NULL, "&&abc"));
- LONGS_EQUAL(1, irc_channel_is_channel (NULL, "+abc"));
- LONGS_EQUAL(1, irc_channel_is_channel (NULL, "++abc"));
- LONGS_EQUAL(1, irc_channel_is_channel (NULL, "!abc"));
- LONGS_EQUAL(1, irc_channel_is_channel (NULL, "!!abc"));
/* server with chantypes = "#" */
server = irc_server_alloc ("my_ircd");