Removed eprintln! in ftp file transfer causing break when on Windows

This commit is contained in:
veeso
2021-04-13 09:09:04 +02:00
parent 08b8946429
commit 6c6dadc4e7
6 changed files with 1 additions and 10 deletions

View File

@@ -64,7 +64,6 @@ mod tests {
fn test_ui_layout_utils_draw_area_in() {
let area: Rect = Rect::new(0, 0, 1024, 512);
let child: Rect = draw_area_in(area, 75, 30);
println!("{:?}", child);
assert_eq!(child.x, 43);
assert_eq!(child.y, 63);
assert_eq!(child.width, 271);