From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Tue, 28 May 2024 09:18:27 +0000 (+0200) Subject: Add a TODO to make things more explicit. X-Git-Url: http://git.euphorik.ch/index.cgi?a=commitdiff_plain;h=baca47f782fb96d27e991f58daa929fc3ef9bbf5;p=rust_exercises.git Add a TODO to make things more explicit. --- diff --git a/exercises/07_threads/05_channels/tests/insert.rs b/exercises/07_threads/05_channels/tests/insert.rs index a880b20..651a467 100644 --- a/exercises/07_threads/05_channels/tests/insert.rs +++ b/exercises/07_threads/05_channels/tests/insert.rs @@ -1,3 +1,5 @@ +// TODO: Set `move_forward` to `true` in `ready` when you think you're done with this exercise. +// Feel free to call an instructor to verify your solution! use channels::data::TicketDraft; use channels::{launch, Command}; use std::time::Duration; @@ -24,8 +26,6 @@ fn ready() { // since our server doesn't expose any **read** actions. // We have no way to know if the inserts are actually happening and if they // are happening correctly. - // Set `move_forward` to `true` when you think you're done with this exercise. - // Feel free to call an instructor to verify your solution! let move_forward = false; assert!(move_forward);