summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2015-06-24 16:37:04 -0500
committerRichard Mudgett <rmudgett@digium.com>2015-06-24 17:13:17 -0500
commita0c2d2089d25cf3102ccd363e230b8a3085f00ae (patch)
tree30a69651b855bc827dd74f8bd7f90c7048f62902
parentaf66b0f3f7d4e85b85d3efb9377d14de0a8895f0 (diff)
DNS unit tests: Fix extraneous description string commas.
Change-Id: Icf5f13c8e1c2c92a4473bb573ed2dd856ce1b64e
-rw-r--r--tests/test_dns.c16
-rw-r--r--tests/test_dns_recurring.c8
2 files changed, 12 insertions, 12 deletions
diff --git a/tests/test_dns.c b/tests/test_dns.c
index b27281e0b..4e2c4a464 100644
--- a/tests/test_dns.c
+++ b/tests/test_dns.c
@@ -913,10 +913,10 @@ AST_TEST_DEFINE(resolver_resolve_sync_off_nominal)
info->summary = "Test off-nominal synchronous DNS resolution";
info->description =
"This test performs several off-nominal synchronous DNS resolutions:\n"
- "\t* Attempt resolution with NULL name\n",
- "\t* Attempt resolution with invalid RR type\n",
- "\t* Attempt resolution with invalid RR class\n",
- "\t* Attempt resolution with NULL result pointer\n",
+ "\t* Attempt resolution with NULL name\n"
+ "\t* Attempt resolution with invalid RR type\n"
+ "\t* Attempt resolution with invalid RR class\n"
+ "\t* Attempt resolution with NULL result pointer\n"
"\t* Attempt resolution with resolver that returns an error";
return AST_TEST_NOT_RUN;
case TEST_EXECUTE:
@@ -1170,10 +1170,10 @@ AST_TEST_DEFINE(resolver_resolve_async_off_nominal)
info->summary = "Test off-nominal asynchronous DNS resolution";
info->description =
"This test performs several off-nominal asynchronous DNS resolutions:\n"
- "\t* Attempt resolution with NULL name\n",
- "\t* Attempt resolution with invalid RR type\n",
- "\t* Attempt resolution with invalid RR class\n",
- "\t* Attempt resolution with NULL callback pointer\n",
+ "\t* Attempt resolution with NULL name\n"
+ "\t* Attempt resolution with invalid RR type\n"
+ "\t* Attempt resolution with invalid RR class\n"
+ "\t* Attempt resolution with NULL callback pointer\n"
"\t* Attempt resolution with resolver that returns an error";
return AST_TEST_NOT_RUN;
case TEST_EXECUTE:
diff --git a/tests/test_dns_recurring.c b/tests/test_dns_recurring.c
index 84cd9d4fd..b5736c22c 100644
--- a/tests/test_dns_recurring.c
+++ b/tests/test_dns_recurring.c
@@ -399,10 +399,10 @@ AST_TEST_DEFINE(recurring_query_off_nominal)
info->summary = "Test off-nominal recurring DNS resolution";
info->description =
"This test performs several off-nominal recurring DNS resolutions:\n"
- "\t* Attempt resolution with NULL name\n",
- "\t* Attempt resolution with invalid RR type\n",
- "\t* Attempt resolution with invalid RR class\n",
- "\t* Attempt resolution with NULL callback pointer\n",
+ "\t* Attempt resolution with NULL name\n"
+ "\t* Attempt resolution with invalid RR type\n"
+ "\t* Attempt resolution with invalid RR class\n"
+ "\t* Attempt resolution with NULL callback pointer\n"
"\t* Attempt resolution with resolver that returns an error";
return AST_TEST_NOT_RUN;
case TEST_EXECUTE: