Skip to content

Commit

Permalink
chore(tests): fix syntax error in server tests
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Dec 15, 2017
1 parent 5d05b28 commit 9af18f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});

Expand Down

0 comments on commit 9af18f3

Please sign in to comment.