We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d442b61 commit baca47fCopy full SHA for baca47f
exercises/07_threads/05_channels/tests/insert.rs
@@ -1,3 +1,5 @@
1
+// TODO: Set `move_forward` to `true` in `ready` when you think you're done with this exercise.
2
+// Feel free to call an instructor to verify your solution!
3
use channels::data::TicketDraft;
4
use channels::{launch, Command};
5
use std::time::Duration;
@@ -24,8 +26,6 @@ fn ready() {
24
26
// since our server doesn't expose any **read** actions.
25
27
// We have no way to know if the inserts are actually happening and if they
28
// 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!
29
let move_forward = false;
30
31
assert!(move_forward);
0 commit comments