From 04707cbba630e3e4ad6b4200bef8ae7888c49e3b Mon Sep 17 00:00:00 2001 From: Nathan Lilienthal Date: Sun, 6 Jan 2019 19:06:57 -0500 Subject: Normalize Log Message Strings The general style for errors, warnings and info messages is to start with a capitalized letter and end without a period. The main exception is when dealing with nouns that are clearer with special case handling, e.g. "macOS failed to work" or "ioctl is borked". --- src/grid/tests.rs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/grid/tests.rs') diff --git a/src/grid/tests.rs b/src/grid/tests.rs index 2e06c10e..560bb0fe 100644 --- a/src/grid/tests.rs +++ b/src/grid/tests.rs @@ -84,8 +84,6 @@ fn scroll_down() { // Test that GridIterator works #[test] fn test_iter() { - info!(""); - let mut grid = Grid::new(Line(5), Column(5), 0, 0); for i in 0..5 { for j in 0..5 { @@ -93,8 +91,6 @@ fn test_iter() { } } - info!("grid: {:?}", grid); - let mut iter = grid.iter_from(Point { line: 4, col: Column(0), -- cgit