From 679b9e2c0adb1fa2573ec88e12fa2595c2cc3bfe Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Mon, 4 Mar 2024 09:41:09 +0100 Subject: [PATCH] cat: prefix two test fns with "test_" --- tests/by-util/test_cat.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/by-util/test_cat.rs b/tests/by-util/test_cat.rs index 89b945b80..b7b19fd32 100644 --- a/tests/by-util/test_cat.rs +++ b/tests/by-util/test_cat.rs @@ -324,7 +324,7 @@ fn test_stdin_show_ends() { } #[test] -fn squeeze_all_files() { +fn test_squeeze_all_files() { // empty lines at the end of a file are "squeezed" together with empty lines at the beginning let (at, mut ucmd) = at_and_ucmd!(); at.write("input1", "a\n\n"); @@ -335,7 +335,7 @@ fn squeeze_all_files() { } #[test] -fn squeeze_all_files_repeated() { +fn test_squeeze_all_files_repeated() { // empty lines at the end of a file are "squeezed" together with empty lines at the beginning let (at, mut ucmd) = at_and_ucmd!(); at.write("input1", "a\n\n");