We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d525141 commit 7e6a9e5Copy full SHA for 7e6a9e5
1 file changed
src/codes_handle/iterator.rs
@@ -282,9 +282,11 @@ mod tests {
282
let b = barrier.clone();
283
284
let t = std::thread::spawn(move || {
285
- for _ in 0..1000 {
+ for _ in 0..10 {
286
b.wait();
287
- let _ = msg.read_key_dynamic("shortName").unwrap();
+ for _ in 0..100 {
288
+ let _ = msg.read_key_dynamic("shortName").unwrap();
289
+ }
290
}
291
});
292
0 commit comments