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
I am returning NOP actions from my custom protocol, this causes the HtmlReporter to throw an exception.
This is likely because there are 2 occurrences of action.get(Tags.Desc) != null where action.get throws a NoSuchTagException.
I fixed this locally by adding null as a default value: action.get(Tags.Desc, null), this causes the expressions to function as intended.
The text was updated successfully, but these errors were encountered:
- Update HtmlReporter and PlainTextReporter to deal with actions that do not contain the Tags.Desc
- Update NOP actions to create the 'No operation' Description by default
- Create the 'StdActionCompiler.noOperationalState' for those situations in which doing nothing in the state is a valid action
I am returning NOP actions from my custom protocol, this causes the HtmlReporter to throw an exception.
This is likely because there are 2 occurrences of action.get(Tags.Desc) != null where action.get throws a NoSuchTagException.
I fixed this locally by adding null as a default value: action.get(Tags.Desc, null), this causes the expressions to function as intended.
The text was updated successfully, but these errors were encountered: