Remove unnecessary Err from get_canonicalized_path (#8009)

Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
This commit is contained in:
nkitsaini 2023-08-21 00:41:32 +05:30 committed by GitHub
parent 2767459f89
commit 22f4f313f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 16 additions and 29 deletions

View file

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