ok/jj
1
0
Fork 0
forked from mirrors/jj

tests: rename test_file_print_command.rs to_file_show_command.rs

This commit is contained in:
Yuya Nishihara 2024-10-04 20:05:03 +09:00
parent 6878b5047b
commit af556aa01c
2 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -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");