The output of a test suite starting when using the json formatter represents "test_count" as a json string, like so: ```json { "type": "suite", "event": "started", "test_count": "1" } ``` I would expect it to be a number like this: ```json { "type": "suite", "event": "started", "test_count": 1 } ```