From 59ba378eec8db25335d02fd9183e197c26c5d1af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sun, 4 Aug 2019 14:30:29 +0200 Subject: tests: add missing space after name of function --- tests/unit/plugins/irc/test-irc-config.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/unit/plugins/irc/test-irc-config.cpp') 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")); -- cgit v1.2.3