Skip to content

Commit b89857b

Browse files
committed
Fix windows test
1 parent 08d9739 commit b89857b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/chat-cli/src/util/file_uri.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ mod tests {
162162
Err(FileUriError::FileNotFound { path }) => {
163163
// Verify the path was expanded (should start with / not ~)
164164
assert!(
165-
path.starts_with("/"),
165+
path.is_absolute(),
166166
"Path should be absolute after tilde expansion, got: {:?}",
167167
path
168168
);

0 commit comments

Comments
 (0)