We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9df6fc commit 4e0d91dCopy full SHA for 4e0d91d
crates/pet-virtualenvwrapper/src/lib.rs
@@ -211,7 +211,10 @@ mod tests {
211
Some(pet_fs::path::norm_case(executable))
212
);
213
assert_eq!(virtualenvwrapper_env.version, Some("3.12.1".to_string()));
214
- assert_eq!(virtualenvwrapper_env.prefix, Some(prefix.clone()));
+ assert_eq!(
215
+ virtualenvwrapper_env.prefix,
216
+ Some(pet_fs::path::norm_case(prefix.clone()))
217
+ );
218
assert_eq!(
219
virtualenvwrapper_env.project,
220
Some(pet_fs::path::norm_case(project_root.clone()))
0 commit comments