Merge "Remove the limitation of max open streams" into main am: 4115d8b01d am: fcc06a7f6c

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2719933

Change-Id: Ib5bf4303c23b8383f86a6d12a4734adf74d1be8c
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot
2023-08-24 19:34:23 +00:00
committed by Automerger Merge Worker
2 changed files with 3 additions and 3 deletions

View File

@@ -1379,7 +1379,7 @@ TEST_P(AudioCoreModule, CheckMixPorts) {
<< "At least two mix ports have PRIMARY flag set: " << primaryMixPort.value()
<< " and " << port.id;
primaryMixPort = port.id;
EXPECT_EQ(1, mixPort.maxOpenStreamCount)
EXPECT_GE(mixPort.maxOpenStreamCount, 0)
<< "Primary mix port " << port.id << " can not have maxOpenStreamCount "
<< mixPort.maxOpenStreamCount;
}