summaryrefslogtreecommitdiff
path: root/main/test.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2012-07-30 23:18:13 +0000
committerRichard Mudgett <rmudgett@digium.com>2012-07-30 23:18:13 +0000
commit49a6b4935e0193c44793db301d12632e7a79b7ac (patch)
tree8bcd73e2eb288b370ee4307ba7fd752400e9f052 /main/test.c
parent964daecc3fa41c4c95dec2548988ccafbce611d8 (diff)
Fix some presence-state unit test typos.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@370597 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/test.c')
-rw-r--r--main/test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/test.c b/main/test.c
index d24ea42a6..2bd0b9299 100644
--- a/main/test.c
+++ b/main/test.c
@@ -553,18 +553,18 @@ static struct ast_test *test_alloc(ast_test_cb_t *cb)
}
if (test->info.category[0] != '/' || test->info.category[strlen(test->info.category) - 1] != '/') {
- ast_log(LOG_WARNING, "Test category is missing a leading or trailing backslash for test %s%s\n",
+ ast_log(LOG_WARNING, "Test category is missing a leading or trailing slash for test %s%s\n",
test->info.category, test->info.name);
}
if (ast_strlen_zero(test->info.summary)) {
- ast_log(LOG_WARNING, "Test %s/%s has no summary, test registration refused.\n",
+ ast_log(LOG_WARNING, "Test %s%s has no summary, test registration refused.\n",
test->info.category, test->info.name);
return test_free(test);
}
if (ast_strlen_zero(test->info.description)) {
- ast_log(LOG_WARNING, "Test %s/%s has no description, test registration refused.\n",
+ ast_log(LOG_WARNING, "Test %s%s has no description, test registration refused.\n",
test->info.category, test->info.name);
return test_free(test);
}