When running the thread, it goes through the whole flow except for the last BeanShell assertion.
My BeanShell code is:
report = vars.get("status_1");
if (report=="active") {
Failure = true;
FailureMessage = "failed to report";
} else {
Failure = false;
}
What could go wrong?