Skip to content

Commit

Permalink
fix freq CTS bug & add CTS for setRange edge case
Browse files Browse the repository at this point in the history
Related-To: VLCLJ-2228

Signed-off-by: Vishnu Khanth <[email protected]>
  • Loading branch information
vishnu-khanth committed Sep 2, 2024
1 parent 26bdca0 commit 353ceaa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ TEST_F(

for (uint32_t i = 0; i < pFrequency.size(); i++) {
if (pFrequency[i] != -1) {
EXPECT_GT(pFrequency[i], 0);
EXPECT_GE(pFrequency[i], freq_property.min);
EXPECT_LE(pFrequency[i], freq_property.max);
}
if (i > 0)
Expand Down

0 comments on commit 353ceaa

Please sign in to comment.