diff options
Diffstat (limited to 'exercises/20_threads')
| -rw-r--r-- | exercises/20_threads/threads3.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/20_threads/threads3.rs b/exercises/20_threads/threads3.rs index 13abc45..37810cf 100644 --- a/exercises/20_threads/threads3.rs +++ b/exercises/20_threads/threads3.rs @@ -60,6 +60,6 @@ mod tests { } println!("total numbers received: {}", total_received); - assert_eq!(total_received, queue_length) + assert_eq!(total_received, queue_length); } } |
