diff options
Diffstat (limited to 'cli/tools/test.rs')
-rw-r--r-- | cli/tools/test.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tools/test.rs b/cli/tools/test.rs index 6ed443806..5395de6af 100644 --- a/cli/tools/test.rs +++ b/cli/tools/test.rs @@ -1623,9 +1623,9 @@ impl TestOutputPipe { // that it's done clearing out its pipe before returning. let (sender, receiver) = std::sync::mpsc::channel(); self.state.lock().replace(sender); - // Bit of a hack in order to send a zero width space in order - // to wake the thread up. It seems that sending zero bytes - // does not work here on windows. + // Bit of a hack to send a zero width space in order to wake + // the thread up. It seems that sending zero bytes here does + // not work on windows. self.writer.write_all(ZERO_WIDTH_SPACE.as_bytes()).unwrap(); self.writer.flush().unwrap(); receiver.recv().unwrap(); |