mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Remove unnecessary Err
from get_canonicalized_path
(#8009)
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
This commit is contained in:
parent
2767459f89
commit
22f4f313f1
7 changed files with 16 additions and 29 deletions
|
@ -30,7 +30,7 @@ async fn test_picker_alt_ret() -> anyhow::Result<()> {
|
|||
];
|
||||
let paths = files
|
||||
.iter()
|
||||
.map(|f| get_canonicalized_path(f.path()).unwrap())
|
||||
.map(|f| get_canonicalized_path(f.path()))
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
fs::write(&paths[0], "1\n2\n3\n4")?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue