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
Chained expressions such as a | b | c are currently represented as nested matchers (Or(Or(a, b), c)) because of operators associativity. These structures should be flattened instead (e.g. Or(a, b, c)).
The text was updated successfully, but these errors were encountered:
Chained expressions such as
a | b | c
are currently represented as nested matchers (Or(Or(a, b), c)
) because of operators associativity. These structures should be flattened instead (e.g.Or(a, b, c)
).The text was updated successfully, but these errors were encountered: