chore(tests): fix syntax error in server tests

This commit is contained in:
Sean McArthur
2017-12-15 12:41:26 -08:00
parent 5d05b284d8
commit 9af18f3024

View File

@@ -626,7 +626,7 @@ fn disable_keep_alive_post_request() {
tx1.send(()).unwrap();
let nread = req.read(&mut buf).expect("keep-alive reading")
let nread = req.read(&mut buf).expect("keep-alive reading");
assert_eq!(nread, 0);
});