Skip to content

Commit ef37193

Browse files
committed
Fix line ending issue in test file
Signed-off-by: Drew Cain <groksrc@gmail.com>
1 parent 221ed53 commit ef37193

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

tests/sync/test_character_conflicts.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ async def test_case_sensitivity_conflict(
225225
):
226226
"""Test conflict handling when case differences cause issues."""
227227
import platform
228-
228+
229229
project_dir = project_config.home
230230

231231
# Create directory structure that might cause case conflicts
@@ -256,15 +256,17 @@ async def test_case_sensitivity_conflict(
256256

257257
# Verify entities were created
258258
entities = await entity_repository.find_all()
259-
259+
260260
# On case-insensitive file systems (macOS, Windows), only one entity will be created
261261
# On case-sensitive file systems (Linux), two entities will be created
262262
if platform.system() in ["Darwin", "Windows"]:
263263
# Case-insensitive file systems
264264
assert len(entities) >= 1
265265
# Only one of the paths will exist
266266
file_paths = [entity.file_path for entity in entities]
267-
assert any(path in ["Finance/investment.md", "finance/investment.md"] for path in file_paths)
267+
assert any(
268+
path in ["Finance/investment.md", "finance/investment.md"] for path in file_paths
269+
)
268270
else:
269271
# Case-sensitive file systems (Linux)
270272
assert len(entities) >= 2

0 commit comments

Comments
 (0)