bugfix
bob mcwhirter <[email protected]> Thu, 25 Sep 2003 23:43:47 -0400 (EDT)
| Newsgroups | gmane.comp.java.werkflow |
|---|---|
| Message-ID | <[email protected]> |
Okay-- Bart, tweaked your tests to use beanshell slightly more correctly. value == '1' is doing String to char comparison, which fails. Changed to testing value.equals("cheese") which does better comparison. Then, I fixed some actual related bugs in the core. I've managed to get rid of the ConsistencyException regarding consuming non-existant tokens, which was really a problem of attempting to consume the same token twice. Fixed by ensuring unique tokens in the consume set. -bob