Skip to content

Commit 231dbbc

Browse files
committed
feat: harmonized node_addr naming
1 parent d4ed3d4 commit 231dbbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fn dumbpipe_bin() -> &'static str {
1919
///
2020
/// This assumes that the header lines are ASCII and can be parsed byte by byte.
2121
fn read_ascii_lines(mut n: usize, reader: &mut impl Read) -> io::Result<Vec<u8>> {
22-
let mut buf = [0u8; 1];
22+
let mut buf = [0u8; 1];
2323
let mut res = Vec::new();
2424
loop {
2525
if reader.read(&mut buf)? != 1 {

0 commit comments

Comments
 (0)