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
String literals must be enclosed by single or double quotes ([?(@.color == 'blue')] or [?(@.color == "blue")]).
When using a JacksonJsonProvider or JacksonJsonNodeJsonProvider, and when testing a predicate with the in operator, an InvalidJsonException is thrown.
I've uploaded a test class to a gist: https://gist.github.com/johnflavin/31aea6ac790f32cbbb528124eceeb4df. In it, I try out all the different json provider classes, with single and double quotes, in predicates using ?(@.foo == 'bar') and ?(@.foo in ['bar']). Everything works as expected, except for Jackson providers, single quotes, and in.