Skip to content

Commit c49ef04

Browse files
committed
fix windows test
1 parent 82210d1 commit c49ef04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dsc_lib/src/functions/path.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ mod tests {
8585

8686
// if any part of the path is absolute, it replaces it instead of appending on Windows
8787
#[cfg(target_os = "windows")]
88-
assert_eq!(result, format!("D:{SEPARATOR}test"));
88+
assert_eq!(result, format!("D:test"));
8989

9090
// non-Windows, the colon is a valid character in a path
9191
#[cfg(not(target_os = "windows"))]

0 commit comments

Comments
 (0)