summaryrefslogtreecommitdiff
path: root/cpan/JSON-PP/t/006_pc_pretty.t
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/JSON-PP/t/006_pc_pretty.t')
-rw-r--r--cpan/JSON-PP/t/006_pc_pretty.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpan/JSON-PP/t/006_pc_pretty.t b/cpan/JSON-PP/t/006_pc_pretty.t
index 2de5c5d37c..582f882dd6 100644
--- a/cpan/JSON-PP/t/006_pc_pretty.t
+++ b/cpan/JSON-PP/t/006_pc_pretty.t
@@ -56,7 +56,7 @@ is($js,q|{"foo":[{"a":"b"},0,1,2]}|);
$obj = {foo => "bar"};
-$pc->indent(3); # original -- $pc->indent(1);
+$pc->indent(1);
is($pc->encode($obj), qq|{\n "foo":"bar"\n}\n|, "nospace");
$pc->space_after(1);
is($pc->encode($obj), qq|{\n "foo": "bar"\n}\n|, "after");