We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 051ab00 commit 8688906Copy full SHA for 8688906
tests/online.rs
@@ -108,14 +108,15 @@ fn test_none_sink_id() {
108
}
109
110
#[test]
111
+#[should_panic] // https://github.com/mrDIMAS/hrtf/issues/9
112
fn test_weird_sample_rate() {
113
let options = AudioContextOptions {
114
sink_id: "none".into(),
115
sample_rate: Some(24000.),
116
..AudioContextOptions::default()
117
};
118
- AudioContext::new(options);
119
+ let _ = AudioContext::new(options);
120
121
122
0 commit comments