summaryrefslogtreecommitdiffstats
path: root/audio/core/2.0/vts/functional/AudioPrimaryHidlHalTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'audio/core/2.0/vts/functional/AudioPrimaryHidlHalTest.cpp')
-rw-r--r--audio/core/2.0/vts/functional/AudioPrimaryHidlHalTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/core/2.0/vts/functional/AudioPrimaryHidlHalTest.cpp b/audio/core/2.0/vts/functional/AudioPrimaryHidlHalTest.cpp
index bb1d26f92..a08a2d62b 100644
--- a/audio/core/2.0/vts/functional/AudioPrimaryHidlHalTest.cpp
+++ b/audio/core/2.0/vts/functional/AudioPrimaryHidlHalTest.cpp
@@ -661,8 +661,8 @@ static R extract(Return<R> ret) {
code; \
}
-TEST_IO_STREAM(GetFrameCount, "Check that the stream frame count == the one it was opened with",
- ASSERT_EQ(audioConfig.frameCount, extract(stream->getFrameCount())))
+TEST_IO_STREAM(GetFrameCount, "Check that getting stream frame count does not crash the HAL.",
+ ASSERT_TRUE(stream->getFrameCount().isOk()))
TEST_IO_STREAM(GetSampleRate, "Check that the stream sample rate == the one it was opened with",
ASSERT_EQ(audioConfig.sampleRateHz, extract(stream->getSampleRate())))