fix tx tester calling run ok when a filter is applied and tests fail

This commit is contained in:
Grahame Grieve 2024-05-18 03:25:23 -05:00
parent 6ba9a11c51
commit 29442c0b1d
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ public class TxTester {
for (JsonObject suite : tests.getJsonObjects("suites")) {
if ((!suite.has("mode") || modes.contains(suite.asString("mode")))) {
if (suite.asBoolean("disabled")) {
ok = true;
// ok = true;
} else {
ok = runSuite(suite, tx, modes, filter, json.forceArray("suites")) && ok;
}