Unit tests: Fix unit test description strings.

Analyzing the code shows that the unit test summary and description
strings should not end with a new-line character.  Where these strings are
used in the code a new-line is provided for output.

Change-Id: I129284f5e7ca93d82532334076da4c462d3d9fba
This commit is contained in:
Richard Mudgett
2015-06-24 14:39:01 -05:00
parent a0c2d2089d
commit 9c6d72e30d
11 changed files with 78 additions and 78 deletions

View File

@@ -88,7 +88,7 @@ AST_TEST_DEFINE(poll_test)
info->category = "/main/poll/";
info->summary = "unit test for the ast_poll() API";
info->description =
"Verifies behavior for the ast_poll() API call\n";
"Verifies behavior for the ast_poll() API call";
return AST_TEST_NOT_RUN;
case TEST_EXECUTE:
break;