mirror of
https://github.com/imjasonh/testscript-rs
synced 2026-07-19 07:06:46 +00:00
Fix code formatting issues to pass CI
Co-authored-by: imjasonh <210737+imjasonh@users.noreply.github.com>
This commit is contained in:
parent
a030b26bb9
commit
6b29284f9d
2 changed files with 11 additions and 3 deletions
|
|
@ -218,7 +218,11 @@ exec ls link_dir"#;
|
||||||
fs::write(&script_path, script_content).unwrap();
|
fs::write(&script_path, script_content).unwrap();
|
||||||
|
|
||||||
let result = run_test(&script_path);
|
let result = run_test(&script_path);
|
||||||
assert!(result.is_ok(), "Directory symlink test failed: {:?}", result);
|
assert!(
|
||||||
|
result.is_ok(),
|
||||||
|
"Directory symlink test failed: {:?}",
|
||||||
|
result
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
|
|
@ -240,7 +244,11 @@ relative content"#;
|
||||||
fs::write(&script_path, script_content).unwrap();
|
fs::write(&script_path, script_content).unwrap();
|
||||||
|
|
||||||
let result = run_test(&script_path);
|
let result = run_test(&script_path);
|
||||||
assert!(result.is_ok(), "Relative path symlink test failed: {:?}", result);
|
assert!(
|
||||||
|
result.is_ok(),
|
||||||
|
"Relative path symlink test failed: {:?}",
|
||||||
|
result
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue