Commit 1c75058
fix: make tzlc content check case insensitive
Update compile_tzlc.py to perform case insensitive comparison when
checking if timezone/locale compatibility test outputs match expected
content. This makes the compatibility tests more robust by handling
variations in capitalization that may occur across different systems.
Before: content not in expected_content (case sensitive)
After: content.lower() not in [c.lower() for c in expected_content] (case insensitive)
This prevents false negatives when version strings have different
capitalization (e.g., "Version:1.32.0" vs "version:1.32.0").
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 278a035 commit 1c75058
1 file changed
+4
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
15 | 18 | | |
16 | 19 | | |
17 | 20 | | |
| |||
0 commit comments