diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-06-21 10:21:22 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-06-21 10:22:04 +0200 |
commit | 4a42cda3a5f5b02d8ba9afae129499c26250d334 (patch) | |
tree | afa7b2b9988dcfe89321d5653fa4c0fccadd72ce /tests/unit/plugins | |
parent | 944661045252f38b08e1da32904317370b36cf74 (diff) | |
download | weechat-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.cpp | 4 |
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"); |