forked from lavina/lavina
1
0
Fork 0
This commit is contained in:
Nikita Vilunov 2023-10-13 12:06:53 +02:00
parent 0ce1342032
commit 45fda1adb0
1 changed files with 0 additions and 2 deletions

View File

@ -44,7 +44,6 @@ impl<'a> TestScope<'a> {
async fn send(&mut self, str: &str) -> Result<()> { async fn send(&mut self, str: &str) -> Result<()> {
self.writer.write_all(str.as_bytes()).await?; self.writer.write_all(str.as_bytes()).await?;
self.writer.write_all(b"\n").await?;
self.writer.flush().await?; self.writer.flush().await?;
Ok(()) Ok(())
} }
@ -94,7 +93,6 @@ impl<'a> TestScopeTls<'a> {
async fn send(&mut self, str: &str) -> Result<()> { async fn send(&mut self, str: &str) -> Result<()> {
self.writer.write_all(str.as_bytes()).await?; self.writer.write_all(str.as_bytes()).await?;
self.writer.write_all(b"\n").await?;
self.writer.flush().await?; self.writer.flush().await?;
Ok(()) Ok(())
} }