tests: Spelling fixes

Correct typos of the following word families:

mounting
jitterbuffer
thrashing
original
manipulating
entries
actual
possibility
tasks
options
positives
taskprocessor
other
dynamic
declarative

ASTERISK-29714

Change-Id: I6b94659d045eec5d8d020fce2e9b6e2f593dfeb6
This commit is contained in:
Josh Soref
2021-10-30 21:04:37 -04:00
committed by Friendly Automation
parent 42ba751f5a
commit c06342a3cb
16 changed files with 26 additions and 26 deletions

View File

@@ -259,7 +259,7 @@ static int consumer_wait_for(struct consumer *consumer, size_t expected_len)
if (r == ETIMEDOUT) {
break;
}
ast_assert(r == 0); /* Not expecting any othet types of errors */
ast_assert(r == 0); /* Not expecting any other types of errors */
}
return consumer->messages_rxed_len;
}
@@ -280,7 +280,7 @@ static int consumer_wait_for_completion(struct consumer *consumer)
if (r == ETIMEDOUT) {
break;
}
ast_assert(r == 0); /* Not expecting any othet types of errors */
ast_assert(r == 0); /* Not expecting any other types of errors */
}
return consumer->complete;
}
@@ -306,7 +306,7 @@ static int consumer_should_stay(struct consumer *consumer, size_t expected_len)
if (r == ETIMEDOUT) {
break;
}
ast_assert(r == 0); /* Not expecting any othet types of errors */
ast_assert(r == 0); /* Not expecting any other types of errors */
}
return consumer->messages_rxed_len;
}