Skip to content

Commit

Permalink
[tests] Change expected bitrate in offline processing test
Browse files Browse the repository at this point in the history
  • Loading branch information
noituri committed Oct 25, 2024
1 parent c18531b commit 992b099
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integration_tests/src/tests/offline_processing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ use log::info;
use regex::Regex;
use serde_json::json;
use tokio_tungstenite::tungstenite;
use tracing::error;

use crate::{tests::start_server_msg_listener, CompositorInstance};

Expand Down Expand Up @@ -123,7 +124,7 @@ pub fn offline_processing() -> Result<()> {
if !(1.9..=2.1).contains(&duration) {
return Err(anyhow!("Invalid duration: {}", duration));
}
if !(930_000..=1_008_200).contains(&bit_rate) {
if !(1_005_000..=1_015_000).contains(&bit_rate) {
return Err(anyhow!("Invalid bit rate: {}", bit_rate));
}

Expand Down

0 comments on commit 992b099

Please sign in to comment.