Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
DivineGod committed Dec 4, 2024
1 parent 86de41b commit ccfbeb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/sink.rs
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ mod tests {
fn test_channel_volume() {
use crate::source::ChannelVolume;

let (sink, mut queue_rx) = Sink::new_idle();
let (sink, mut queue_rx) = Sink::new();

let v = vec![100.0f32];
let input = SamplesBuffer::new(1, 48000, v.clone());
Expand Down
2 changes: 1 addition & 1 deletion src/source/channel_volume.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ mod test {
use super::*;

use crate::buffer::SamplesBuffer;
use crate::source::{from_iter, Source};
use crate::source::Source;

#[test]
fn test_channel_volume_iterator() {
Expand Down

0 comments on commit ccfbeb6

Please sign in to comment.