Skip to content

Commit 7a5359d

Browse files
committed
Canonicalize both sides because windows does weird canonicalizations
1 parent 1a1afc8 commit 7a5359d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ui_test/src/dependencies.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ pub fn build_dependencies(config: &Config) -> Result<Dependencies> {
105105
.packages
106106
.iter()
107107
.find(|package| {
108-
package.manifest_path.as_std_path() == manifest_path.canonicalize().unwrap()
108+
package.manifest_path.as_std_path().canonicalize().unwrap()
109+
== manifest_path.canonicalize().unwrap()
109110
})
110111
.unwrap();
111112

0 commit comments

Comments
 (0)