Add telecom integration allow list and change processing for outgoing audio calls.

This commit is contained in:
Cody Henthorne
2022-07-18 11:17:16 -04:00
parent e69d944f11
commit e024541b8a
13 changed files with 86 additions and 24 deletions

View File

@@ -6,7 +6,7 @@ import org.junit.runner.RunWith
import org.junit.runners.Parameterized
@RunWith(Parameterized::class)
class AudioProcessingMethodSelectorTest_modelInList(
class RingRtcDynamicConfigurationTest_inList(
private val model: String,
private val serializedList: String,
private val expected: Boolean
@@ -14,7 +14,7 @@ class AudioProcessingMethodSelectorTest_modelInList(
@Test
fun testModelInList() {
val actual = AudioProcessingMethodSelector.modelInList(model, serializedList)
val actual = RingRtcDynamicConfiguration.modelInList(model, serializedList)
assertEquals(expected, actual)
}