Skip to content

Commit 3414997

Browse files
committed
Tweak the descriptions
1 parent 032a583 commit 3414997

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
11
[
22
{
3-
"description": "Single key object, does not map to operator",
3+
"description": "Single key object, does not map to operator. Should fail.",
44
"rule": { "UnknownOperator": true },
55
"data": null,
66
"error": { "type": "Unknown Operator" }
77
},
88
{
9-
"description": "Multi-Key Object",
9+
"description": "Multi-Key Object, both keys are not operators. Should fail.",
1010
"rule": { "UnknownOperator": true, "UnknownOperator2": true },
1111
"data": null,
1212
"error": { "type": "Unknown Operator" }
1313
},
1414
{
15-
"description": "Multi-Key Object 2",
15+
"description": "Multi-Key Object, one key is a valid operator. Should fail.",
1616
"rule": { "+": true, "UnknownOperator2": true },
1717
"data": null,
1818
"error": { "type": "Unknown Operator" }
19-
}
19+
},
20+
{
21+
"description": "Multi-Key Object, both keys are valid operators. Should fail.",
22+
"rule": { "+": true, "-": true },
23+
"data": null,
24+
"error": { "type": "Unknown Operator" }
25+
}
2026
]

0 commit comments

Comments
 (0)