diff --git a/cli/tests/runner.rs b/cli/tests/runner.rs index 1420e30cd..2053aa77a 100644 --- a/cli/tests/runner.rs +++ b/cli/tests/runner.rs @@ -29,7 +29,7 @@ mod test_duplicate_command; mod test_edit_command; mod test_evolog_command; mod test_file_chmod_command; -mod test_file_print_command; +mod test_file_show_command; mod test_file_track_untrack_commands; mod test_fix_command; mod test_generate_md_cli_help; diff --git a/cli/tests/test_file_print_command.rs b/cli/tests/test_file_show_command.rs similarity index 98% rename from cli/tests/test_file_print_command.rs rename to cli/tests/test_file_show_command.rs index c7643c57e..9fd12880a 100644 --- a/cli/tests/test_file_print_command.rs +++ b/cli/tests/test_file_show_command.rs @@ -15,7 +15,7 @@ use crate::common::TestEnvironment; #[test] -fn test_print() { +fn test_show() { let test_env = TestEnvironment::default(); test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]); let repo_path = test_env.env_root().join("repo"); @@ -96,7 +96,7 @@ fn test_print() { #[cfg(unix)] #[test] -fn test_print_symlink() { +fn test_show_symlink() { let test_env = TestEnvironment::default(); test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]); let repo_path = test_env.env_root().join("repo");