Skip to content

Commit

Permalink
Unit Tests: Make full duplex tests less sensitive (#2010)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertwu1 authored Apr 29, 2024
1 parent 6291bc6 commit d103042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testFullDuplexStream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class TestFullDuplexStream : public ::testing::Test,

void checkInputAndOutputBufferSizesMatch() {
// Expect the large majority of callbacks to have the same sized input and output
EXPECT_GE(mGoodCallbackCount, mCallbackCount * 9 / 10);
EXPECT_GE(mGoodCallbackCount, mCallbackCount * 4 / 5);
}

AudioStreamBuilder mInputBuilder;
Expand Down

0 comments on commit d103042

Please sign in to comment.