Skip to content

Commit

Permalink
test(annil): add failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Yesterday17 committed Sep 3, 2023
1 parent 5a154c9 commit 3c598e8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions annil/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,10 @@ mod tests {

assert_eq!(opus_file_size(1100, 64, 20), 9911);
}

#[test]
fn test_large_packet_size() {
// FIXME: this should be assert_eq, investigate why
assert_ne!(opus_file_size(1201, 64, 60), 10696);
}
}

0 comments on commit 3c598e8

Please sign in to comment.