View | Details | Raw Unified | Return to bug 62545
Collapse All | Expand All

(-)src/components/org/apache/jmeter/visualizers/RenderAsJSON.java (-1 / +1 lines)
Lines 31-37 Link Here
31
import net.minidev.json.parser.ParseException;
31
import net.minidev.json.parser.ParseException;
32
32
33
public class RenderAsJSON extends SamplerResultTab implements ResultRenderer {
33
public class RenderAsJSON extends SamplerResultTab implements ResultRenderer {
34
    private static final String TAB_SEPARATOR = ":   "; //$NON-NLS-1$
34
    private static final String TAB_SEPARATOR = "    "; //$NON-NLS-1$
35
35
36
    /** {@inheritDoc} */
36
    /** {@inheritDoc} */
37
    @Override
37
    @Override
(-)test/src/org/apache/jmeter/visualizers/TestRenderAsJson.java (-1 / +1 lines)
Lines 28-34 Link Here
28
public class TestRenderAsJson {
28
public class TestRenderAsJson {
29
29
30
    private Method prettyJSON;
30
    private Method prettyJSON;
31
    private final String TAB = ":   ";
31
    private final String TAB = "    ";
32
32
33
    private String prettyJSON(String prettify) throws Exception {
33
    private String prettyJSON(String prettify) throws Exception {
34
        return (String) prettyJSON.invoke(null, prettify);
34
        return (String) prettyJSON.invoke(null, prettify);

Return to bug 62545