Skip to content

Commit

Permalink
[tests] Change expected bitrate in offline processing test (#835)
Browse files Browse the repository at this point in the history
  • Loading branch information
noituri authored Oct 29, 2024
1 parent e0c12a5 commit 3412ce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/src/tests/offline_processing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,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_000_000..=1_015_000).contains(&bit_rate) {
return Err(anyhow!("Invalid bit rate: {}", bit_rate));
}

Expand Down

0 comments on commit 3412ce7

Please sign in to comment.