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
Anecdotally, it seems like nested match statements fail to properly execute.
Given:
def match_inner_called =false
match Succeeded("test_outer") on {
success {
match Succeeded("test_inner") on {
match_inner_called =true
}
}
}
assert match_inner_called // this fails
The text was updated successfully, but these errors were encountered:
Anecdotally, it seems like nested match statements fail to properly execute.
Given:
The text was updated successfully, but these errors were encountered: