diff options
| author | mo8it <mo8it@proton.me> | 2024-05-22 15:13:18 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-05-22 15:13:18 +0200 |
| commit | 7cdf6b79429428e944b440eb713e711d844a92d7 (patch) | |
| tree | 721e17fd35d3073068023870ed42ff4439c21fae /exercises/20_threads | |
| parent | c8ad6c3960b4bec44a610cc144e6b635bffcbc31 (diff) | |
Add missing semicolons
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); } } |
