Shorten miri tests
These extra iterations shouldn't matter, and miri is pretty slow.
This commit is contained in:
parent
7d3beb174e
commit
16c0dc8b1e
1 changed files with 2 additions and 2 deletions
|
@ -213,13 +213,13 @@ mod miri {
|
|||
}
|
||||
|
||||
for mut samples in buffer.iter_mut() {
|
||||
for _ in 0..10 {
|
||||
for _ in 0..2 {
|
||||
for sample in samples.iter_mut() {
|
||||
*sample += 0.001;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
assert_eq!(real_buffers[0][0], 0.011000001);
|
||||
assert_eq!(real_buffers[0][0], 0.003);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue