Skip to content

Commit d5b0612

Browse files
Mat001claude
andcommitted
Fix JSON escaping in test_config.py conditions field
The conditions field had single backslashes instead of double backslashes, causing JSON parsing to fail. This restores the correct escaping format that matches the master branch. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent c6cef7b commit d5b0612

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/acceptance/test_acceptance/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@
394394
{
395395
"id": "16902921321",
396396
"name": "Audience1",
397-
"conditions": "[\"and\", [\"or\", [\"or\", {\"match\": \"exact\", \"name\": \"attr_1\", \"type\": \"custom_attribute\", \"value\": \"hola\"}]]]"
397+
"conditions": "[\\"and\\", [\\"or\\", [\\"or\\", {\\"match\\": \\"exact\\", \\"name\\": \\"attr_1\\", \\"type\\": \\"custom_attribute\\", \\"value\\": \\"hola\\"}]]]"
398398
}
399399
],
400400
"events": [

0 commit comments

Comments
 (0)