mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-03 12:25:35 +00:00
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:
@@ -169,7 +169,7 @@ AST_TEST_DEFINE(test_features_channel_dtmf)
|
||||
info->description =
|
||||
"This test creates two channels, adds a DTMF hook to one, places them into\n"
|
||||
"a bridge, and verifies that the DTMF hook added to the channel feature\n"
|
||||
"hooks can be triggered once the channel is bridged.\n";
|
||||
"hooks can be triggered once the channel is bridged.";
|
||||
return AST_TEST_NOT_RUN;
|
||||
case TEST_EXECUTE:
|
||||
break;
|
||||
@@ -261,7 +261,7 @@ AST_TEST_DEFINE(test_features_channel_interval)
|
||||
info->description =
|
||||
"This test creates two channels, adds an interval hook to one, places them\n"
|
||||
"into a bridge, and verifies that the interval hook added to the channel\n"
|
||||
"feature hooks is triggered once the channel is bridged.\n";
|
||||
"feature hooks is triggered once the channel is bridged.";
|
||||
return AST_TEST_NOT_RUN;
|
||||
case TEST_EXECUTE:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user