Skip to content

Commit f883df8

Browse files
committed
fix: resolve failing test
1 parent c08ac02 commit f883df8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gitingest/tests/test_parse_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def test_parse_query_include_and_ignore_overlap() -> None:
104104
def test_parse_query_local_path() -> None:
105105
path = "/home/user/project"
106106
result = parse_query(path, max_file_size=100, from_web=False)
107-
assert result["local_path"] == "C:\\home\\user\\project"
107+
assert result["local_path"] == "/home/user/project"
108108
assert result["id"] is not None
109109
assert result["slug"] == "user/project"
110110

0 commit comments

Comments
 (0)