diff --git a/src/hypofuzz/hy.py b/src/hypofuzz/hy.py index 3b81fc9..8b9c53c 100644 --- a/src/hypofuzz/hy.py +++ b/src/hypofuzz/hy.py @@ -405,7 +405,7 @@ def _json_description(self) -> Report: doubletons = self.pool.doubletons offset = singletons * (singletons-1) / 2 if 0 == doubletons else singletons * singletons / (2 * doubletons) offset = int(offset) + 1 - report["est. branches"] = report["branches"] + offset + report["est. branches"] = int(str(report["branches"])) + offset return report @property