You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
key_signal = "near_keypad × 4 in restricted_door" in SUSPICIOUS_RESULT
What's wrong:
The × character (U+00D7, multiplication sign) is a non-ASCII Unicode character embedded directly in the fixture string. If Phase 6 frontend mocks parse key_signal using a regex like r"(\w+) x (\d+) in (\w+)" (ASCII x, common in JS/Python parsers), the pattern will silently fail to match, returning null/None and causing the frontend to render a blank signal field. The bug lives in the fixture establishing a Unicode format that the consuming code never expects.
Fix:
Use ASCII-safe format that matches the parser contract
key_signal = "near_keypad x 4 in restricted_door"
OR document that × is intentional and fix the regex on the consumer side
@Devnil434 Where:
What's wrong:
Fix:
Use ASCII-safe format that matches the parser contract
OR document that × is intentional and fix the regex on the consumer side