summaryrefslogtreecommitdiff
path: root/tests/test_dns_query_set.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2015-06-10 17:51:22 -0500
committerRichard Mudgett <rmudgett@digium.com>2015-06-10 18:06:14 -0500
commitae589da4662e0a626223cbef05dc53d197a0b16a (patch)
tree9d59972f8c8a4febe456ef0c33e44b794ad133b1 /tests/test_dns_query_set.c
parent83bc9d366d7e8eb78d6935baaab482c34f2c2658 (diff)
DNS: Remove trailing newline from summary and descriptions.
Those trailing newlines mess up test formatting. Change-Id: I5e3f3a55b82c9d7acb9661201d4993d1958f1185
Diffstat (limited to 'tests/test_dns_query_set.c')
-rw-r--r--tests/test_dns_query_set.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/test_dns_query_set.c b/tests/test_dns_query_set.c
index 9acf1bf81..2efc88121 100644
--- a/tests/test_dns_query_set.c
+++ b/tests/test_dns_query_set.c
@@ -290,14 +290,14 @@ AST_TEST_DEFINE(query_set)
case TEST_INIT:
info->name = "query_set";
info->category = "/main/dns/query_set/";
- info->summary = "Test nominal asynchronous DNS query set\n";
+ info->summary = "Test nominal asynchronous DNS query set";
info->description =
"This tests nominal query set in the following ways:\n"
"\t* Multiple queries are added to a query set\n"
"\t* The mock resolver is configured to respond to all queries\n"
"\t* Asynchronous resolution of the query set is started\n"
"\t* The mock resolver responds to all queries\n"
- "\t* We ensure that the query set callback is invoked upon completion\n";
+ "\t* We ensure that the query set callback is invoked upon completion";
return AST_TEST_NOT_RUN;
case TEST_EXECUTE:
break;
@@ -312,13 +312,13 @@ AST_TEST_DEFINE(query_set_nominal_cancel)
case TEST_INIT:
info->name = "query_set_nominal_cancel";
info->category = "/main/dns/query_set/";
- info->summary = "Test nominal asynchronous DNS query set cancellation\n";
+ info->summary = "Test nominal asynchronous DNS query set cancellation";
info->description =
"This tests nominal query set cancellation in the following ways:\n"
"\t* Multiple queries are added to a query set\n"
"\t* The mock resolver is configured to NOT respond to any queries\n"
"\t* Asynchronous resolution of the query set is started\n"
- "\t* The query set is canceled and is confirmed to return with success\n";
+ "\t* The query set is canceled and is confirmed to return with success";
return AST_TEST_NOT_RUN;
case TEST_EXECUTE:
break;
@@ -333,14 +333,14 @@ AST_TEST_DEFINE(query_set_off_nominal_cancel)
case TEST_INIT:
info->name = "query_set_off_nominal_cancel";
info->category = "/main/dns/query_set/";
- info->summary = "Test off-nominal asynchronous DNS query set cancellation\n";
+ info->summary = "Test off-nominal asynchronous DNS query set cancellation";
info->description =
"This tests nominal query set cancellation in the following ways:\n"
"\t* Multiple queries are added to a query set\n"
"\t* The mock resolver is configured to respond to half the queries\n"
"\t* Asynchronous resolution of the query set is started\n"
"\t* The query set is canceled and is confirmed to return failure\n"
- "\t* The query set callback is confirmed to run, since it could not be fully canceled\n";
+ "\t* The query set callback is confirmed to run, since it could not be fully canceled";
return AST_TEST_NOT_RUN;
case TEST_EXECUTE:
break;