Skip to content

Commit

Permalink
Try to fix windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
pyamada-atlassian committed Jul 30, 2024
1 parent b22cd14 commit 73548a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/parcel_filesystem/src/in_memory_file_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ mod test {
let cwd = PathBuf::from("C:\\foo");
let fs = InMemoryFileSystem::default();
fs.set_current_working_directory(&cwd);
let result = fs.canonicalize_impl("\\something");
let result = fs.canonicalize_impl(Path::new("\\something"));
assert_eq!(result, PathBuf::from("C:\\something"));
}
}

0 comments on commit 73548a2

Please sign in to comment.