-
Bug
-
Resolution: Done
-
Major
-
7.0.0.Beta6
-
None
-
NEW
-
NEW
not() unary tests as it is short-circuiting in some cases without checking all the elements. E.g.:
10 in ( not( null, 10 ) ) ----> short circuits and returns true when it should be false
null in ( not( 10, null ) ) -----> short circuits and returns true when it should be false