diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-08-04 14:30:29 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-08-04 14:39:58 +0200 |
commit | 59ba378eec8db25335d02fd9183e197c26c5d1af (patch) | |
tree | fda18c17f70184cb7bd106c2588d75abf1088930 /tests/unit/plugins/irc/test-irc-config.cpp | |
parent | 0bf5a5ae9cea41b6c85072b2f4592bc007cae817 (diff) | |
download | weechat-59ba378eec8db25335d02fd9183e197c26c5d1af.zip |
tests: add missing space after name of function
Diffstat (limited to 'tests/unit/plugins/irc/test-irc-config.cpp')
-rw-r--r-- | tests/unit/plugins/irc/test-irc-config.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/plugins/irc/test-irc-config.cpp b/tests/unit/plugins/irc/test-irc-config.cpp index a9af2702f..3cba17808 100644 --- a/tests/unit/plugins/irc/test-irc-config.cpp +++ b/tests/unit/plugins/irc/test-irc-config.cpp @@ -38,11 +38,11 @@ TEST_GROUP(IrcConfig) TEST(IrcConfig, CheckAutojoin) { /* NULL/empty string */ - LONGS_EQUAL(1, irc_config_check_autojoin(NULL)); - LONGS_EQUAL(1, irc_config_check_autojoin("")); + LONGS_EQUAL(1, irc_config_check_autojoin (NULL)); + LONGS_EQUAL(1, irc_config_check_autojoin ("")); /* wrong delimiter: space instead of comma */ - LONGS_EQUAL(0, irc_config_check_autojoin("#chan1 #chan2 #chan3")); + LONGS_EQUAL(0, irc_config_check_autojoin ("#chan1 #chan2 #chan3")); /* no spaces allowed around comma */ LONGS_EQUAL(0, irc_config_check_autojoin ("#chan1, #chan2")); |