commented out unit test

This commit is contained in:
Mitchell 2020-08-10 18:54:47 +01:00
parent fa57f25d8a
commit 1f3745c0b1
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ impl ClientApi {
stream.read(&mut buffer).ok()?;
match Commands::from(&buffer) {
match Commands::from(&mut buffer) {
Commands::Request(None) => {
stream.write_all(Commands::Info(None).to_string().as_bytes()).unwrap();
stream.read(&mut buffer).ok()?;
@ -67,4 +67,4 @@ impl ClientApi {
pub fn get_clients(&self) {
}
}
}