Commit df2ba11
fix: normalize paths in test for cross-platform compatibility
Fix test failure on Windows platform by using os.path.join()
instead of hardcoded forward slashes for path construction.
This ensures the test works correctly on both Unix and Windows systems.
Windows was returning: ['2018\\07\\31\\IMG_7409.MOV']
Test expected: ['2018/07/31\\IMG_7409.MOV']
Fixed to use: os.path.join("2018", "07", "31", "IMG_7409.MOV")
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent e9f6dbc commit df2ba11
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| |||
85 | 85 | | |
86 | 86 | | |
87 | 87 | | |
88 | | - | |
| 88 | + | |
89 | 89 | | |
90 | 90 | | |
91 | 91 | | |
| |||
0 commit comments