[SCXML] Incorrect and invalid ecmascript condition in IR test 459

Ate Douma <[email protected]> Mon, 28 Dec 2015 17:18:28 +0100
Newsgroups gmane.comp.web.voice
Message-ID <[email protected]>
Hi,

I've just noticed an error in Implementation Report test 459 (ecmascript).

This test contains the incorrect (and invalid!) ecmascript condition:

   "Var4==0 | Var3 != 2".

AFAICT this condition probably should be coded as:

   "Var1==0 || Var3 != 2".

And because this condition is used as a negative test (transitions to "fail")
this test always succeeds, regardless, which probably is not intended :)

Ate