Skip to content

Commit

Permalink
tests: Increase timeouts in plugin_plc test
Browse files Browse the repository at this point in the history
  • Loading branch information
gavv committed Jul 17, 2024
1 parent 0324130 commit dcc3e88
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tests/public_api/test_plugin_plc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,10 @@ TEST_GROUP(plugin_plc) {

receiver_conf.latency_tuner_profile = ROC_LATENCY_TUNER_PROFILE_INTACT;
receiver_conf.target_latency = test::Latency * 1000000000ull / test::SampleRate;
receiver_conf.latency_tolerance =
test::Latency * 1000000000ull / test::SampleRate * 10000;
receiver_conf.no_playback_timeout =
test::Timeout * 1000000000ull / test::SampleRate;
test::Timeout * 1000000000ull / test::SampleRate * 10000;
}

bool is_rs8m_supported() {
Expand Down

0 comments on commit dcc3e88

Please sign in to comment.